Reports double negations that can be simplified.

Example:


  if (!!functionCall()) {}

After the quick-fix is applied:


  if (functionCall()) {}

Example:


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

After the quick-fix is applied:


  if (a == b) {}