Back to Intellij Community

GroovyTrivialIf

plugins/groovy/groovy-psi/resources/inspectionDescriptions/GroovyTrivialIf.html

2025.3-rc-2224 B
Original Source

Reports if statements which can be simplified to single assignment or return statements.

Example:

if (foo())
    return true;
  else
    return false;

After the quick-fix is applied:

return foo();