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

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