diff --git a/pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java b/pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java index 4622c83f..1eeab97e 100644 --- a/pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java +++ b/pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java @@ -3,8 +3,8 @@ package org.apache.maven; import java.lang.*; public class Dummy { - public String badChecky = "error"; - + public String badChecky = "tag"; + private String unusedField = "Foo"; public Dummy() { @@ -17,5 +17,16 @@ public class Dummy { } private void unusedMethod() { + ; + } + + private void bar() { + buz("Howdy"); + buz("Howdy"); + buz("Howdy"); + buz("Howdy"); + } + + private void buz(String x) { } } \ No newline at end of file