报告根据数据流分析只能对单个操作数值满足的不等条件。 此类条件可被替换为相等条件,以使代码更清晰。
示例:
if (x >= 10) { ... if (x <= 10) { // can be replaced with 'x == 10' } }
2022.2 最新变化