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

rules.ModifiedControlVariable.md Maven / Gradle / Ivy


Checks that the control variable in a `for` loop is not modified inside the loop.

Invalid:
````
for (int i = 0; i < 1; i++) {
    i++;
}
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy