Example:
if (!!functionCall()) {} // double negation if (!(a != b)) {} // double negation
After the quick-fix is applied:
if (functionCall()) {} if (a == b) {}