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

rules.InnerAssignment.md Maven / Gradle / Ivy


Checks for assignments within an expressions. However, it still allows assignment in a while loop clause.

Valid:
````
while((line = reader.readLine()) != null) {
}
````

Invalid:
````
String s = Integer.toString(i = 2);
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy