kemitix-checkstyle-ruleset/src/builder/resources/rules/LogicConditionNeedOptimization.md

13 lines
184 B
Markdown
Raw Normal View History

Prevent the placement of variables or fields after methods in an expression.
Valid:
````
if (property && getProperty()) {}
````
Invalid:
````
if (getProperty() && property) {}
````