toString updated

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@539 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 5c02a91a35
commit b40b90e65f
  1. 5
      jode/jode/jvm/NewObject.java

@ -46,7 +46,10 @@ public class NewObject {
}
public String toString() {
return "new "+type;
if (instance == null)
return "new "+type;
else
return instance.toString();
}
}

Loading…
Cancel
Save