kemitix-checkstyle-ruleset/builder/src/main/resources/rules/ModifiedControlVariable.md

10 lines
144 B
Markdown
Raw Normal View History

Checks that the control variable in a `for` loop is not modified inside the loop.
Invalid:
````
for (int i = 0; i < 1; i++) {
i++;
}
````