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
Parameters to a method must be `final`.
Valid:
````
void foo(final int a) {}
````
Invalid:
````
void foo(int a) {}
````