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 and then not using those parameters.

This rule is defined by the following Java class: net.sourceforge.pmd.rules.UnusedFormalParameterRule

Example:

                

public class Foo {
 private void bar(String howdy) {
  // howdy is not used
 }

    
            




© 2015 - 2025 Weber Informatics LLC | Privacy Policy