Mixing Logical Operators Without Parentheses (MLOWP)

Description:

An expression containing multiple logical operators together should be parenthesized properly.

Example:

void oper() {
    boolean a, b, c;
    // do something
    if (a || b && c)  {
        // do something
        return;
    }
}