rename exception attributes

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1123 379699f6-c40d-0410-875b-85095c16579e
branch_1_1
jochen 25 years ago
parent 1cfa18f43c
commit 4b8022a00e
  1. 10
      jode/jode/obfuscator/MethodIdentifier.java.in

@ -222,5 +222,15 @@ public class MethodIdentifier extends Identifier implements Opcodes {
}
info.setBytecode(bytecode);
}
String[] exceptions = info.getExceptions();
if (exceptions != null) {
for (int i=0; i< exceptions.length; i++) {
ClassIdentifier ci = Main.getClassBundle()
.getClassIdentifier(exceptions[i]);
if (ci != null)
exceptions[i] = ci.getFullAlias();
}
}
}
}

Loading…
Cancel
Save