forked from phoedos/pmd
Merge branch 'pr-1521'
This commit is contained in:
@ -22,7 +22,9 @@ This is a {{ site.pmd.release_type }} release.
|
||||
### API Changes
|
||||
|
||||
### External Contributions
|
||||
|
||||
* [#1516](https://github.com/pmd/pmd/pull/1516): \[java] OneDeclarationPerLine: Don't report multiple variables in a for statement. - [Kris Scheibe](https://github.com/kris-scheibe)
|
||||
* [#1521](https://github.com/pmd/pmd/pull/1521): \[java] Upgrade to ASM7 for JDK 11 support - [Mark Pritchard](https://github.com/markpritchard)
|
||||
|
||||
{% endtocmaker %}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
2
pom.xml
2
pom.xml
@ -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>
|
||||
|
Reference in New Issue
Block a user