Skip to content

Commit 6d9c0ab

Browse files
committed
tidy up some newlines
1 parent a75a1d0 commit 6d9c0ab

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ebean-datasource/src/main/java/io/ebean/datasource/pool/ConnectionPool.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ final class ConnectionPool implements DataSourcePool {
9595
private final boolean shutdownOnJvmExit;
9696
private Thread shutdownHook;
9797

98-
9998
ConnectionPool(String name, DataSourceConfig params) {
10099
this.config = params;
101100
this.name = name;
@@ -135,7 +134,6 @@ final class ConnectionPool implements DataSourcePool {
135134
init();
136135
}
137136
this.nextTrimTime = System.currentTimeMillis() + trimPoolFreqMillis;
138-
139137
}
140138

141139
private void init() {

ebean-datasource/src/main/java/io/ebean/datasource/pool/PooledConnection.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,7 @@ public void close() throws SQLException {
463463
return;
464464
}
465465
}
466+
466467
try {
467468
if (connection.isClosed()) {
468469
pool.removeClosedConnection(this);

0 commit comments

Comments
 (0)