Skip to content

Commit

Permalink
Remove UncheckedException on rethrow
Browse files Browse the repository at this point in the history
  • Loading branch information
blootsvoets committed Oct 1, 2018
1 parent 94e6fb0 commit cfbcfa3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void rethrow() throws IOException {
if (getCause() instanceof IOException) {
throw (IOException)getCause();
} else {
throw this;
throw new IOException(this);
}
}

Expand Down

0 comments on commit cfbcfa3

Please sign in to comment.