Equality test on boolean
Author: Semmle LGTM
import java
from EqualityTest eq
where eq.getAnOperand() instanceof BooleanLiteral
select eq
Description
Finds tests like `==true`, `==false`, `!=true`, `!=false`
import java
from EqualityTest eq
where eq.getAnOperand() instanceof BooleanLiteral
select eq
Finds tests like `==true`, `==false`, `!=true`, `!=false`