RulesReturnOfBooleanExpressionOn this pageReturn of boolean expressions should not be wrapped into an "if-then-else" statementReturn of boolean literal statements wrapped into IF-THEN-ELSE ones should be simplified. Noncompliant Code Example IF expression THEN RETURN TRUE;ELSE RETURN FALSE;END IF; Compliant Solution RETURN expression;