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