Reports double negation that can be simplified.

Example:


if (!!functionCall()) {} // double negation
if (!(a != b)) {} // double negation

After the quick-fix is applied, the result looks like this:


if (functionCall()) {}
if (a == b) {}