Upgrade to ASM 9.1 for Java 16 support
This commit is contained in:
parent
7e2f76472d
commit
61aaffe27e
2
pom.xml
2
pom.xml
@ -45,7 +45,7 @@
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-commons</artifactId>
|
||||
<version>8.0.1</version>
|
||||
<version>9.1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -71,7 +71,7 @@ public class JarComparer extends ClassVisitor {
|
||||
}
|
||||
|
||||
public JarComparer(Jar jar) {
|
||||
super(Opcodes.ASM8);
|
||||
super(Opcodes.ASM9);
|
||||
this.jar = jar;
|
||||
this.jarRepo = new JarRepo(jar);
|
||||
this.inheritance = new JarProvider(jar);
|
||||
@ -166,7 +166,7 @@ public class JarComparer extends ClassVisitor {
|
||||
private class MethodReferenceFinder extends MethodVisitor {
|
||||
|
||||
public MethodReferenceFinder() {
|
||||
super(Opcodes.ASM8);
|
||||
super(Opcodes.ASM9);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user