small fixes

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@903 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 12f0205840
commit 1f012131db
  1. 7
      jode/jode/type/NullType.java

@ -35,6 +35,10 @@ public class NullType extends ReferenceType {
super(TC_NULL);
}
public Type getSubType() {
return this;
}
public Type createRangeType(ReferenceType bottomType) {
return tRange(bottomType, this);
}
@ -65,7 +69,7 @@ public class NullType extends ReferenceType {
}
public String toString() {
return "<NULL>";
return "tNull";
}
/**
@ -77,4 +81,3 @@ public class NullType extends ReferenceType {
throw new AssertError("NULL.intersection");
}
}

Loading…
Cancel
Save