Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
landawn committed Jan 29, 2023
1 parent 7b11fda commit 8158e87
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 60 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/landawn/abacus/jdbc/JdbcUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public final class JdbcUtil {
N.max(128, IOUtil.CPU_CORES * 16), // maxThreadPoolSize
180L, TimeUnit.SECONDS);

static final BiParametersSetter<? super PreparedStatement, ? super Object[]> DEFAULT_STMT_SETTER = (stmt, parameters) -> {
static final BiParametersSetter<? super PreparedQuery, ? super Object[]> DEFAULT_STMT_SETTER = (stmt, parameters) -> {
for (int i = 0, len = parameters.length; i < len; i++) {
stmt.setObject(i + 1, parameters[i]);
}
Expand Down
Loading

0 comments on commit 8158e87

Please sign in to comment.