All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy