Reports a null check followed by an instanceof check. Since the instanceof operator always returns false for null, there is no need to also have a null check.

Here is an example of a violation:

    if (x != null && x instanceof String) { ... }

The quickfix changes this code to:

    if (x instanceof String) { ... }

New in 11, Powered by InspectionGadgets