Upgrade to ASM7

Remove ASM7_EXPERIMENTAL flag since ASM7 has been released.
This commit is contained in:
Mark Pritchard
2018-12-11 05:52:16 +11:00
parent 5589540e9f
commit e357da1723
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public class PMDASMVisitor extends ClassVisitor {
public List<String> innerClasses;
public PMDASMVisitor(String outerName) {
super(Opcodes.ASM7_EXPERIMENTAL);
super(Opcodes.ASM7);
this.outerName = outerName;
}

View File

@ -819,7 +819,7 @@ Additionally it includes CPD, the copy-paste-detector. CPD finds duplicated code
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>6.2.1</version>
<version>7.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>