git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@192 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 0913f0f2ca
commit 8c276e920f
  1. 8
      jode/jode/type/ClassInterfacesType.java

@ -389,7 +389,13 @@ public class ClassInterfacesType extends Type {
{
if (jode.Decompiler.isTypeDebugging) {
if (this == tObject)
return "<tObject>";
return "java.lang.Object";
if (ifaces.length == 0)
return clazz.getName();
if (clazz == null && ifaces.length == 1)
return ifaces[0].getName();
StringBuffer sb = new StringBuffer("{");
String comma = "";
if (clazz != null) {

Loading…
Cancel
Save