Boolean checks should not be inverted

Boolean checks should not be inverted

it is needless to invert the result of boolean comparison instead of that we should made the opposite comparison.

Noncompliant Code Example

if ( !(a == 2)) { ...}  // Noncompliant
boolean b = !(i < 10);  // Noncompliant

Compliant Solution

if (a != 2) { ...}
boolean b = (i >= 10);