This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git
The following commit(s) were added to refs/heads/master by this push: new 854c248 Javadoc. 854c248 is described below commit 854c2481fa7c0e512da356a0c7dfaf4e8b11a980 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sat Jun 5 08:42:25 2021 -0400 Javadoc. --- .../java/org/apache/commons/dbcp2/datasources/UserPassKey.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/dbcp2/datasources/UserPassKey.java b/src/main/java/org/apache/commons/dbcp2/datasources/UserPassKey.java index 4112961..b300505 100644 --- a/src/main/java/org/apache/commons/dbcp2/datasources/UserPassKey.java +++ b/src/main/java/org/apache/commons/dbcp2/datasources/UserPassKey.java @@ -24,10 +24,10 @@ import org.apache.commons.dbcp2.Utils; /** * <p> - * Holds a user name and password pair. Serves as a poolable object key for the KeyedObjectPool backing a - * SharedPoolDataSource. Two instances with the same user name are considered equal. This ensures that there will be - * only one keyed pool for each user in the pool. The password is used (along with the user name) by the - * KeyedCPDSConnectionFactory when creating new connections. + * Holds a user name and password pair. Serves as a poolable object key for the {@link KeyedObjectPool} backing a + * {@link SharedPoolDataSource}. Two instances with the same user name are considered equal. This ensures that there + * will be only one keyed pool for each user in the pool. The password is used (along with the user name) by the + * {@code KeyedCPDSConnectionFactory} when creating new connections. * </p> * * <p>