Skip to content

Commit

Permalink
[jOOQ#4932] Sneaky throw is unnecessary here
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Jan 12, 2016
1 parent a77c706 commit d818769
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ final <R1> R1 terminalOp(Supplier<R1> supplier) {
}
catch (Throwable e) {
close();
Utils.sneakyThrow(e);
throw e;
}

return result;
Expand Down

0 comments on commit d818769

Please sign in to comment.