21 lines
1007 B
Diff
21 lines
1007 B
Diff
--- asm-3.3.1/src/org/objectweb/asm/util/CheckMethodAdapter.java 2010-12-19 09:35:58.000000000 +0100
|
|
+++ asm-3.3.1/src/org/objectweb/asm/util/CheckMethodAdapter.java 2018-05-16 09:39:36.099879920 +0200
|
|
@@ -1009,7 +1009,7 @@
|
|
checkIdentifier(name, begin, slash, null);
|
|
begin = slash + 1;
|
|
} while (slash != max);
|
|
- } catch (IllegalArgumentException _) {
|
|
+ } catch (IllegalArgumentException ex) {
|
|
throw new IllegalArgumentException("Invalid "
|
|
+ msg
|
|
+ " (must be a fully qualified class name in internal form): "
|
|
@@ -1083,7 +1083,7 @@
|
|
}
|
|
try {
|
|
checkInternalName(desc, start + 1, index, null);
|
|
- } catch (IllegalArgumentException _) {
|
|
+ } catch (IllegalArgumentException ex) {
|
|
throw new IllegalArgumentException("Invalid descriptor: "
|
|
+ desc);
|
|
}
|