resources.report.rules.pmd.UnusedFormalParameter.html Maven / Gradle / Ivy
UnusedFormalParameter
UnusedFormalParameter
Avoid passing parameters to methods or constructors without actually referencing them in the method body.
This rule is defined by the following Java class: net.sourceforge.pmd.lang.java.rule.unusedcode.UnusedFormalParameterRule
Example(s):
public class Foo {
private void bar(String howdy) {
// howdy is not used
}
}