Reports a null check followed by an instanceof check. Since the instanceof operator always returns false for null, there is no need to have an additional 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) { ... }