Why is this an issue?
Redundant Boolean literals should be removed from expressions to improve readability.
Noncompliant code example
If BooleanVariable = True Then ...
If BooleanVariable <> True Then ...
If BooleanVariable OR False Then ...
DoSomething(Not False)
Compliant solution
If BooleanVariable Then ...
If Not BooleanVariable Then ...
If BooleanVariable Then ...
DoSomething(True)