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