rules.LogicConditionNeedOptimization.md Maven / Gradle / Ivy
Prevent the placement of variables or fields after methods in an expression.
Valid:
````
if (property && getProperty()) {}
````
Invalid:
````
if (getProperty() && property) {}
````
© 2015 - 2024 Weber Informatics LLC | Privacy Policy