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

rules.ReturnBooleanFromTernary.md Maven / Gradle / Ivy


Ternary statements shouldn't have `Boolean` values as results.

Valid:
````
Boolean set = isSet();
Boolean notReady = !isReady();
````

Invalid:
````
Boolean set = isSet() ? True : False;
Boolean notReady = isReady() ? False : True;
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy