initial checkin
[org.ibex.nanogoat.git] / upstream / jode-1.1.1 / patches / object.has.no.superiface.patch
1 --- jode/obfuscator/ClassIdentifier.java.in     Sun Aug 12 11:24:14 2001
2 +++ jode/obfuscator/ClassIdentifier.java.in     Mon Jan 26 19:08:36 2004
3 @@ -478,6 +478,7 @@
4         ClassIdentifier ancestor = this;
5         while(true) {
6             addIfaces(newIfaces, ancestor);
7 +            if (ancestor.superName == null) break;
8             ClassIdentifier superident 
9                 = Main.getClassBundle().getClassIdentifier(ancestor.superName);
10             if (superident == null || superident.isReachable())