Reports calls to
Objects.equals(a, b)
where the first argument is statically known to be non-null. Such a call can be safely replaced with
a.equals(b)
or
a == b
if both arguments are primitives.
New in 2018.3