From ad1866f6a68112b144eae1ecb973579ffb80591f Mon Sep 17 00:00:00 2001 From: jochen Date: Mon, 5 Jul 1999 14:27:43 +0000 Subject: [PATCH] toString added git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@999 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/BytecodeInfo.java | 4 ++++ 1 file changed, 4 insertions(+) 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; + } }