We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8820b11 commit 9990dd7Copy full SHA for 9990dd7
āsrc/main/java/org/apache/ibatis/datasource/pooled/PooledDataSource.java
@@ -60,8 +60,8 @@ public class PooledDataSource implements DataSource {
60
61
private int expectedConnectionTypeCode;
62
63
- private Lock lock = new ReentrantLock();
64
- private Condition condition = lock.newCondition();
+ private final Lock lock = new ReentrantLock();
+ private final Condition condition = lock.newCondition();
65
66
public PooledDataSource() {
67
dataSource = new UnpooledDataSource();
0 commit comments