Repository: commons-dbcp
Updated Branches:
  refs/heads/master dec0bde1b -> db69349c6


Format nits.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/db69349c
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/db69349c
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/db69349c

Branch: refs/heads/master
Commit: db69349c601fca02ed236064bd7c20c359cd9707
Parents: dec0bde
Author: Gary Gregory <garydgreg...@gmail.com>
Authored: Thu Jun 7 17:17:08 2018 -0600
Committer: Gary Gregory <garydgreg...@gmail.com>
Committed: Thu Jun 7 17:17:08 2018 -0600

----------------------------------------------------------------------
 .../java/org/apache/commons/dbcp2/PoolableCallableStatement.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/db69349c/src/main/java/org/apache/commons/dbcp2/PoolableCallableStatement.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/dbcp2/PoolableCallableStatement.java 
b/src/main/java/org/apache/commons/dbcp2/PoolableCallableStatement.java
index f90196d..416082f 100644
--- a/src/main/java/org/apache/commons/dbcp2/PoolableCallableStatement.java
+++ b/src/main/java/org/apache/commons/dbcp2/PoolableCallableStatement.java
@@ -39,7 +39,7 @@ public class PoolableCallableStatement extends 
DelegatingCallableStatement {
     /**
      * The {@link KeyedObjectPool} from which this CallableStatement was 
obtained.
      */
-    private final KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> _pool;
+    private final KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> _pool;
 
     /**
      * Key for this statement in the containing {@link KeyedObjectPool}.
@@ -55,7 +55,7 @@ public class PoolableCallableStatement extends 
DelegatingCallableStatement {
      * @param conn the {@link DelegatingConnection} that created this 
CallableStatement
      */
     public PoolableCallableStatement(final CallableStatement stmt, final 
PStmtKey key,
-            final KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool,
+            final KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> pool,
             final DelegatingConnection<Connection> conn) {
         super(conn, stmt);
         _pool = pool;

Reply via email to