The boolean expression this != null always returns true and similarly this == null always returns false.
Suppress false positives by adding the suppression annotation @SuppressWarnings("ComparingThisWithNull") to the enclosing element.
@SuppressWarnings("ComparingThisWithNull")