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

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

There is a newer version: 8.6.0.37351
Show newest version

Through Java's evolution keywords have been added. While code that uses those words as identifiers may be compilable under older versions of Java, it will not be under modern versions.

KeywordAdded
assert1.4
constreserved
enum5.0
gotoreserved
strictfp1.2

Noncompliant Code Example

public void doSomething() {
  int enum = 42;            // Noncompliant
}

Compliant Solution

public void doSomething() {
  int magic = 42;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy