Catch IllegalArgumentException with Java 8. Workaround for ASM 4.1

This further improves compatibility with Java 8 when using ASM 4.1

More info here md-5/SpecialSource@710ccc6439
This commit is contained in:
bloodshot 2014-05-23 10:28:51 -04:00 committed by md_5
parent 1ce1d91291
commit 56e499fc02

View File

@ -46,7 +46,7 @@ public class RuntimeRepo extends CachingRepo {
ClassReader cr;
try {
cr = new ClassReader(internalName);
} catch (IOException ex) {
} catch (Exception ex) {
return null;
}
ClassNode node = new ClassNode();