From 85f2f05528327430b319f91b8336b11fb0e157d6 Mon Sep 17 00:00:00 2001 From: jochen Date: Wed, 2 Jun 1999 20:20:27 +0000 Subject: [PATCH] print clazz name in toString git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@821 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/MethodInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/jode/bytecode/MethodInfo.java b/jode/jode/bytecode/MethodInfo.java index dfa6004..8e41301 100644 --- a/jode/jode/bytecode/MethodInfo.java +++ b/jode/jode/bytecode/MethodInfo.java @@ -220,6 +220,6 @@ public class MethodInfo extends BinaryInfo { public String toString() { return "Method "+Modifier.toString(modifier)+" "+ - typeSig + " " + name; + typeSig + " " + clazzInfo.getName() + "."+ name; } }