Skip to content

Commit

Permalink
Update ComputeClassWriter.java
Browse files Browse the repository at this point in the history
  • Loading branch information
davidburstrom authored Jan 18, 2023
1 parent 5e0fd2d commit cef7302
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private boolean typeImplements(String type, ClassReader info, final String itf)
private ClassReader typeInfo(final String type) {
final Optional<byte[]> maybeBytes = this.bytes.getBytes(type);
if (!maybeBytes.isPresent()) {
throw new PitError("Could not find class defintiion for " + type);
throw new PitError("Could not find class definition for " + type);
}
return new ClassReader(maybeBytes.get());
}
Expand Down

0 comments on commit cef7302

Please sign in to comment.