単純化できる二重否定を報告します。
例:
if (!!functionCall()) {}
クイックフィックス適用後:
if (functionCall()) {}
例:
if (!(a != b)) {}
クイックフィックス適用後:
if (a == b) {}