We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2b0feb + 567328d commit 5069d30Copy full SHA for 5069d30
retrolambda/src/main/java/net/orfjackal/retrolambda/interfaces/ClassInfo.java
@@ -30,7 +30,7 @@ public ClassInfo(ClassReader cr) {
30
this.reader = cr;
31
this.access = cr.getAccess();
32
this.type = Type.getObjectType(cr.getClassName());
33
- this.superclass = Type.getObjectType(cr.getSuperName());
+ this.superclass = cr.getSuperName() != null ? Type.getObjectType(cr.getSuperName()) : null;
34
for (String iface : cr.getInterfaces()) {
35
this.interfaces.add(Type.getObjectType(iface));
36
}
0 commit comments