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

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

There is a newer version: 8.6.0.37351
Show newest version

If a local variable is declared but not used, it is dead code and should be removed. Doing so will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

public int numberOfMinutes(int hours) {
  int seconds = 0;   // seconds is never used 
  return hours * 60;
}

Compliant Solution

public int numberOfMinutes(int hours) {
  return hours * 60;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy