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

rules.FinalParameters.md Maven / Gradle / Ivy


Parameters to a method must be `final`.

Valid:
````
void foo(final int a) {}
````

Invalid:
````
void foo(int a) {}
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy