Bump ASM version to be Java 8+ compatible

Closes gh-10647
This commit is contained in:
Stephane Nicoll 2017-10-17 16:29:06 +02:00
parent 8762d952a4
commit dd90f071c6
1 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ import org.springframework.asm.ClassReader;
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;
/**
@ -298,7 +299,7 @@ public abstract class MainClassFinder {
private boolean mainMethodFound;
ClassDescriptor() {
super(Opcodes.ASM4);
super(SpringAsmInfo.ASM_VERSION);
}
@Override