Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 9, 2024
1 parent 437b6b0 commit 35feb24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,7 @@ public Connection connect(final String url, final Properties info) throws SQLExc
*/
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();
Expand Down

0 comments on commit 35feb24

Please sign in to comment.