Reports comparisons to null which are followed by an 'equals()' call with a constant argument.

For example the following will be reported by this inspection:

    if (s != null && s.equals("literal")) {}
And the quickfix will replace that with:
    if ("literal".equals(s)) {}