Skip to content

Commit

Permalink
Java 11: make Java 11 related errors suppressable
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Jul 4, 2018
1 parent f6fc0bc commit 2424cb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private void visitType(Class<?> c, boolean inheriting) {
ClassReader cr = new ClassReader(is);
cr.accept(v, 0);
}
catch (IOException e) {
catch (IOException | UnsupportedOperationException e) {
if (ignoreFailure) {
shortCircuit = true;
}
Expand Down

0 comments on commit 2424cb5

Please sign in to comment.