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

org.sonar.l10n.java.rules.squid.S1126.html Maven / Gradle / Ivy

There is a newer version: 8.6.0.37351
Show newest version

Return of boolean literal statements wrapped into if-then-else ones should be simplified.

Noncompliant Code Example

if (expression) {  
  return true;
} else {
  return false;
}

Compliant Solution

return expression; 
return !!expression;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy