Skip to content

Commit

Permalink
Shield from JDK 7 only Container
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Mar 25, 2013
1 parent e3d9ea7 commit dc2f737
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ protected boolean testClassExists(final String testClass) {
return false;
} catch (NoClassDefFoundError ex) {
return false;
} catch (UnsupportedClassVersionError ex) {
return false;
}
}

Expand Down

0 comments on commit dc2f737

Please sign in to comment.