Skip to content

Commit

Permalink
Bump ASM version to be Java 8+ compatible
Browse files Browse the repository at this point in the history
Closes gh-10647
  • Loading branch information
snicoll committed Oct 17, 2017
1 parent 8762d95 commit dd90f07
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -41,6 +41,7 @@
import org.springframework.asm.ClassVisitor;
import org.springframework.asm.MethodVisitor;
import org.springframework.asm.Opcodes;
import org.springframework.asm.SpringAsmInfo;
import org.springframework.asm.Type;

/**
Expand Down Expand Up @@ -298,7 +299,7 @@ private static class ClassDescriptor extends ClassVisitor {
private boolean mainMethodFound;

ClassDescriptor() {
super(Opcodes.ASM4);
super(SpringAsmInfo.ASM_VERSION);
}

@Override
Expand Down

0 comments on commit dd90f07

Please sign in to comment.