Skip to content

Commit

Permalink
Specify time unit as variable suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Dec 17, 2024
1 parent 50fe066 commit 3fdd3cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/libj/sql/DelegateConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ default SQLXML createSQLXML() throws SQLException {
}

@Override
default boolean isValid(final int timeout) throws SQLException {
return getTarget().isValid(timeout);
default boolean isValid(final int timeoutSe) throws SQLException {
return getTarget().isValid(timeoutSe);
}

@Override
Expand Down

0 comments on commit 3fdd3cf

Please sign in to comment.