Skip to content

Commit

Permalink
Bump MethodCheckerClassVisitor ASM version
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeregorix committed Feb 13, 2025
1 parent ec3b6aa commit 2ba9732
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static class MethodCheckerClassVisitor extends ClassVisitor {
public MethodCheckerClassVisitor(
final String targetMethodForEnvironment, final Class<?>[] methodParameters, final Class<?> returnType
) {
super(Opcodes.ASM8);
super(Opcodes.ASM9);
this.targetMethod = targetMethodForEnvironment;
final StringJoiner joiner = new StringJoiner("", "(", ")");
for (final Class<?> clazz : methodParameters) {
Expand Down

0 comments on commit 2ba9732

Please sign in to comment.