Look for qualified this usages in the same class.

Examples:

    Negative example:
    if ((file.open(fileName, "w") != null) && (...) || (...)) {
        // ...
    }

    Positive example:
    boolean existed = (file.open(fileName, "w") != null) && (...) || (...);
    if (existed) {
        //...
    }