示例:
if (!!functionCall()) {} // double negation if (!(a != b)) {} // double negation
应用快速修复后,结果如下所示:
if (functionCall()) {} if (a == b) {}