Skip to content

Commit

Permalink
移除不必要的异常构造。
Browse files Browse the repository at this point in the history
  • Loading branch information
CarmJos committed Apr 8, 2022
1 parent 0a6c8ae commit 3fbc58a
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ public interface QueryAction extends SQLAction<SQLQuery> {
try (SQLQuery value = execute()) {
R result = function.apply(value);
return result == null ? defaultResult : result;
} catch (SQLException exception) {
throw new SQLException(exception);
}
}

Expand Down

0 comments on commit 3fbc58a

Please sign in to comment.