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 8098eaa  Javadoc.
8098eaa is described below

commit 8098eaa52eaa0d9d17a41fc68559ff7c564cece0
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Tue Dec 29 11:27:11 2020 -0500

    Javadoc.
---
 .../commons/dbcp2/datasources/ConnectionPoolDataSourceProxy.java | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/dbcp2/datasources/ConnectionPoolDataSourceProxy.java
 
b/src/test/java/org/apache/commons/dbcp2/datasources/ConnectionPoolDataSourceProxy.java
index 1a2de79..d88367c 100644
--- 
a/src/test/java/org/apache/commons/dbcp2/datasources/ConnectionPoolDataSourceProxy.java
+++ 
b/src/test/java/org/apache/commons/dbcp2/datasources/ConnectionPoolDataSourceProxy.java
@@ -28,8 +28,7 @@ import javax.sql.PooledConnection;
 import org.apache.commons.dbcp2.Jdbc41Bridge;
 
 /**
- * ConnectionPoolDataSource implementation that proxies another
- * ConnectionPoolDataSource.
+ * ConnectionPoolDataSource implementation that proxies another 
ConnectionPoolDataSource.
  */
 public class ConnectionPoolDataSourceProxy implements ConnectionPoolDataSource 
{
 
@@ -54,7 +53,7 @@ public class ConnectionPoolDataSourceProxy implements 
ConnectionPoolDataSource {
     }
 
     /**
-     * Return a TesterPooledConnection with notifyOnClose turned on
+     * Gets a TesterPooledConnection with notifyOnClose turned on
      */
     @Override
     public PooledConnection getPooledConnection() throws SQLException {
@@ -62,7 +61,7 @@ public class ConnectionPoolDataSourceProxy implements 
ConnectionPoolDataSource {
     }
 
     /**
-     * Return a TesterPooledConnection with notifyOnClose turned on
+     * Gets a TesterPooledConnection with notifyOnClose turned on
      */
     @Override
     public PooledConnection getPooledConnection(final String user, final 
String password)
@@ -86,7 +85,7 @@ public class ConnectionPoolDataSourceProxy implements 
ConnectionPoolDataSource {
     }
 
     /**
-     * Create a TesterPooledConnection with notifyOnClose turned on
+     * Creates a TesterPooledConnection with notifyOnClose turned on
      */
     protected PooledConnection wrapPooledConnection(final PooledConnection pc) 
{
         final PooledConnectionProxy tpc = new PooledConnectionProxy(pc);

Reply via email to