mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Option is added to disable the inspection when semantics change is possible GitOrigin-RevId: 97e5576582b65c3ba0cb3122d6274a37e271386d
8 lines
227 B
Java
8 lines
227 B
Java
// "Fix all ''compare()' method can be used to compare numbers' problems in file" "false"
|
|
public class Test {
|
|
public int test(double a, double b) {
|
|
<caret>if (a < b) return -1;
|
|
if (a > b) return 1;
|
|
return 0;
|
|
}
|
|
} |