报告可以简化的双重否定。

示例:


  if (!!functionCall()) {}

在应用快速修复后:


  if (functionCall()) {}

示例:


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

在应用快速修复后:


  if (a == b) {}