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

org.sonar.l10n.java.rules.java.S2333.html Maven / Gradle / Ivy

There is a newer version: 8.9.0.37768
Show newest version

Why is this an issue?

The methods declared in an interface are public and abstract by default. Any variables are automatically public static final. Finally, class and interface are automatically public static. There is no need to explicitly declare them so.

Since annotations are implicitly interfaces, the same holds true for them as well.

Similarly, the final modifier is redundant on any method of a final class, private is redundant on the constructor of an Enum, and static is redundant for interface nested into a class or enum.

Noncompliant code example

public interface Vehicle {

  public void go(int speed, Direction direction);  // Noncompliant

Compliant solution

public interface Vehicle {

  void go(int speed, Direction direction);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy