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

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

There is a newer version: 8.6.0.37351
Show newest version

For better readability, do not put more than one statement on a single line.

Noncompliant Code Example

if(someCondition) doSomething();

Compliant Solution

if(someCondition) {
  doSomething();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy