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;
}