org.sonar.l10n.java.rules.squid.S1309.html Maven / Gradle / Ivy
The newest version!
This rule allows you to track the usage of the @SuppressWarnings
mechanism.
Noncompliant Code Example
In case "listOfWarnings=unused" :
@SuppressWarnings("unused")
Compliant Solution
In case "listOfWarnings=all" (default value) :
@SuppressWarnings("unchecked")
@SuppressWarnings("unused")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy