org.sonar.l10n.java.rules.squid.S1134.html Maven / Gradle / Ivy
FIXME
tags are commonly used to mark places where a bug is suspected, but which the developer wants to deal with later.
Sometimes the developer will not have the time or will simply forget to get back to that tag.
This rule is meant to track those tags, and ensure that they do not go unnoticed.
Noncompliant Code Example
int divide(int numerator, int denominator) {
return numerator / denominator; // FIXME denominator value might be 0
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy