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 b9ba306 commit fb7a78cCopy full SHA for fb7a78c
fj-core/src/main/java/org/fugerit/java/core/db/daogen/CloseableDAOContextAbstract.java
@@ -46,7 +46,7 @@ public static CloseableDAOContext newCloseableDAOContextDS(DataSource ds) {
46
return new CloseableDAOContextAbstract() {
47
@Override
48
public Connection getConnection() throws DAOException {
49
- return DAOException.get( () -> ds.getConnection() );
+ return DAOException.get( ds::getConnection );
50
}
51
52
public void close() throws Exception {
0 commit comments