Skip to content

Commit

Permalink
Don't try to read Object
Browse files Browse the repository at this point in the history
  • Loading branch information
ldaley committed Nov 24, 2020
1 parent 3e13dd8 commit 9828370
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void visit(int version, int access, String name, String signature, String
if (superName != null) {
if (superName.equals("spock/lang/Specification")) {
isSpec = true;
} else {
} else if (!superName.equals("java/lang/Object")) {
testsReader.readClass(superName.replace('/', '.'), () -> this);
}
}
Expand Down

0 comments on commit 9828370

Please sign in to comment.