print clazz name in toString

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@821 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent a4dc6e4427
commit 85f2f05528
  1. 2
      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;
}
}

Loading…
Cancel
Save