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 4e2be5a Format nit. 4e2be5a is described below commit 4e2be5acb2b04aa3b2584f191a9cb8109a7ed79d Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Mon Aug 23 13:28:29 2021 -0400 Format nit. --- src/main/java/org/apache/commons/dbcp2/PoolableConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/dbcp2/PoolableConnection.java b/src/main/java/org/apache/commons/dbcp2/PoolableConnection.java index a824cee..d9e463b 100644 --- a/src/main/java/org/apache/commons/dbcp2/PoolableConnection.java +++ b/src/main/java/org/apache/commons/dbcp2/PoolableConnection.java @@ -282,7 +282,7 @@ public class PoolableConnection extends DelegatingConnection<Connection> impleme if (!fatalException) { SQLException parentException = e; SQLException nextException = e.getNextException(); - while(nextException != null && nextException != parentException && !fatalException) { + while (nextException != null && nextException != parentException && !fatalException) { fatalException = isDisconnectionSqlException(nextException); parentException = nextException; nextException = parentException.getNextException();