BytecodeInfo now part of MethodInfo

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@644 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 19d9836e05
commit db33afcfb2
  1. 2
      jode/jode/obfuscator/ConstantRuntimeEnvironment.java

@ -190,7 +190,7 @@ public class ConstantRuntimeEnvironment extends SimpleRuntimeEnvironment {
MethodIdentifier mi = (MethodIdentifier)
m.clazz.bundle.getIdentifier(ref);
if (mi != null) {
BytecodeInfo code = mi.getBytecode();
BytecodeInfo code = mi.info.getBytecode();
if (code != null) {
MethodType mt = (MethodType) Type.tType(ref.getType());
Value[] locals = new Value[code.getMaxLocals()];

Loading…
Cancel
Save