Equality Operations on Boolean Arguments (EOBA)

Description:

Avoid performing equality operations on boolean operands. You should not use 'true' and 'false' literals in conditional clauses.

Example:

int oper (boolean bOk) {
    if (bOk) {
        return 1;
    }
    while (  bOk == true  ) {
        // do something
    }
    return (  bOk == false  ) ? 1 : 0;
}