Skip to content

Commit

Permalink
Fix early return in getMaybeTransformedClassBytes
Browse files Browse the repository at this point in the history
  • Loading branch information
LexManos committed Dec 18, 2023
1 parent 2d292d2 commit bef5635
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ protected byte[] getMaybeTransformedClassBytes(String name, String context) thro
if (module != null) {
var ref = module.reference();
try (var reader = ref.open()) {
return this.getClassBytes(reader, ref, name);
bytes = this.getClassBytes(reader, ref, name);
}
} else {
var parent = this.packageToParentLoader.get(pkg);
Expand Down

0 comments on commit bef5635

Please sign in to comment.