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

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

There is a newer version: 8.6.0.37351
Show newest version

Declaring multiple variable on one line is difficult to read.

Noncompliant Code Example

class MyClass {

  private int a, b;

  public void method(){
    int c; int d;
  }
}

Compliant Solution

class MyClass {

  private int a;
  private int b;

  public void method(){
    int c;
    int d;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy