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

org.sonar.l10n.pmd.SimplifyBooleanExpressions.html Maven / Gradle / Ivy

Avoid unnecessary comparisons in boolean expressions - this complicates simple code. Example :
public class Bar {
 // can be simplified to
 // bar = isFoo();
 private boolean bar = (isFoo() == true);

 public isFoo() { return false;}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy