Skip to content

Commit

Permalink
[AD-1017] Fix style issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Irschick committed Dec 16, 2022
1 parent b919669 commit 173e8a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ public ConcurrentLinkedDeque<Exception> getExceptions() {
}
}

private static <T extends Exception> SQLException logException(T e) {
private static <T extends Exception> SQLException logException(final T e) {
LOGGER.error(e.getMessage(), e);
if (e instanceof SQLException) {
return (SQLException) e;
Expand Down

0 comments on commit 173e8a4

Please sign in to comment.