From db33afcfb24d282b067036b3c763634b8eeeaab4 Mon Sep 17 00:00:00 2001 From: jochen Date: Tue, 27 Apr 1999 18:15:19 +0000 Subject: [PATCH] BytecodeInfo now part of MethodInfo git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@644 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/obfuscator/ConstantRuntimeEnvironment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/jode/obfuscator/ConstantRuntimeEnvironment.java b/jode/jode/obfuscator/ConstantRuntimeEnvironment.java index f74fa9b..31bc3b0 100644 --- a/jode/jode/obfuscator/ConstantRuntimeEnvironment.java +++ b/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()];