diff --git a/jode/jode/bytecode/BytecodeInfo.java b/jode/jode/bytecode/BytecodeInfo.java index ae66425..15118f6 100644 --- a/jode/jode/bytecode/BytecodeInfo.java +++ b/jode/jode/bytecode/BytecodeInfo.java @@ -1120,4 +1120,8 @@ public class BytecodeInfo extends BinaryInfo implements Opcodes { public void setLineNumberTable(LineNumber[] newLnt) { lnt = newLnt; } + + public String toString() { + return "Bytecode "+methodInfo; + } }