Return of boolean literal statements wrapped into if-then-else ones should be simplified.
Note that if the result of the expression is not a boolean but for instance an integer, then double negation should be used for proper conversion.
if (expression) {
return true;
} else {
return false;
}
return expression;
or
return !!expression;