This commit is contained in:
Stéphane Nicoll
2023-11-10 16:41:30 +01:00
parent a97ecf7a29
commit f5453cc445
5 changed files with 8 additions and 8 deletions

View File

@@ -716,7 +716,7 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
Assert.notNull(rse, "ResultSetExtractor must not be null");
logger.debug("Executing prepared SQL query");
return execute(psc, new PreparedStatementCallback<T>() {
return execute(psc, new PreparedStatementCallback<>() {
@Override
@Nullable
public T doInPreparedStatement(PreparedStatement ps) throws SQLException {