resources.report.rules.findbugs.RpC_REPEATED_CONDITIONAL_TEST.html Maven / Gradle / Ivy
RpC_REPEATED_CONDITIONAL_TEST
RpC: Repeated conditional tests (RpC_REPEATED_CONDITIONAL_TEST)
The code contains a conditional test is performed twice, one right after the other
(e.g., x == 0 || x == 0
). Perhaps the second occurrence is intended to be something else
(e.g., x == 0 || y == 0
).