Skip to content

Commit

Permalink
Fix resolution error.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Oct 5, 2021
1 parent c991b81 commit 9ceb2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java
Original file line number Diff line number Diff line change
Expand Up @@ -3125,7 +3125,7 @@ protected ForEnterValue(TypeDescription.Generic target, TypeDescription.Generic
this(target,
enterType,
annotation.getValue(Factory.ENTER_READ_ONLY).resolve(Boolean.class),
annotation.getValue(Factory.ENTER_READ_ONLY).load(Enter.class.getClassLoader()).resolve(Assigner.Typing.class));
annotation.getValue(Factory.ENTER_TYPING).load(Enter.class.getClassLoader()).resolve(Assigner.Typing.class));
}

/**
Expand Down

0 comments on commit 9ceb2fd

Please sign in to comment.