Reports if statements which can be simplified to a single assignment, return or assert statement.

For example:

    if (foo()) {
       return true;
    } else {
       return false;
    }
can be simplified to
    return foo();