报告具有相同的 "then" 和 else 分支的 if 语句。 此类语句几乎肯定表明程序员出现错误。

示例:


if (condition) {
  print "foo"
} else {
  print "foo"
}

在应用快速修复后:


print "foo"