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

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

There is a newer version: 8.6.0.37351
Show newest version

Type parameters that aren't used are dead code, which can only distract and possibly confuse developers during maintenance. Therefore, unused type parameters should be removed.

Noncompliant Code Example

int <T> Add(int a, int b) // Noncompliant; <T> is ignored
{
  return a + b; 
}

Compliant Solution

int Add(int a, int b)
{
  return a + b; 
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy