Negated if condition expression
Reports if
statements which contain else
branches and whose conditions are negated. Flipping the order of the if
and else
branches will usually increase the clarity of such statements.
Example:
if (!condition) {
return "1"
} else {
return "2"
}
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Groovy, 233.SNAPSHOT |
Last modified: 13 July 2023