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 35feb24b Simplify 35feb24b is described below commit 35feb24b62afe18f3248bb7dd5467f0afcf2518e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Feb 9 18:17:19 2024 -0500 Simplify --- src/test/java/org/apache/commons/dbcp2/TestBasicDataSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/dbcp2/TestBasicDataSource.java b/src/test/java/org/apache/commons/dbcp2/TestBasicDataSource.java index d225f48e..109f40a3 100644 --- a/src/test/java/org/apache/commons/dbcp2/TestBasicDataSource.java +++ b/src/test/java/org/apache/commons/dbcp2/TestBasicDataSource.java @@ -1135,7 +1135,7 @@ final class TesterConnectionDelayDriver extends TesterDriver { */ final class TesterConnRequestCountDriver extends TesterDriver { private static final String CONNECT_STRING = "jdbc:apache:commons:testerConnRequestCountDriver"; - private static final AtomicInteger connectionRequestCount = new AtomicInteger(0); + private static final AtomicInteger connectionRequestCount = new AtomicInteger(); public static int getConnectionRequestCount() { return connectionRequestCount.get();