Why is this an issue?
It is needlessly complex to invert the result of a boolean comparison. The opposite comparison should be made instead.
Noncompliant code example
IF NOT x <> y THEN -- Noncompliant
-- ...
END IF;
Compliant solution
IF x = y THEN
-- ...
END IF;