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

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

There is a newer version: 8.6.0.37351
Show newest version

Non-abstract classes and enums with non-static, private members should explicitly initialize those members, either in a constructor or with a default value.

Noncompliant Code Example

class A { // Noncompliant
  private int field;
}

Compliant Solution

class A {
  private int field;

  A(int field) {
    this.field = field;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy