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

rules.AvoidConstantAsFirstOperandInCondition.md Maven / Gradle / Ivy


Checks that condition expressions don't become less readable by attempting to use a constant on the left-hand-side of a comparison.

Valid:
````
if (a == 12) {}
````

Invalid:
````
if (12 == a) {}
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy