Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replaceMinMaxWithArgument/beforeEqual.java
Tagir Valeev 7b5c5c2875 IDEA-240285 ConstantConditions: improve detection of pointless 'Math.min' and 'Math.max' operations
+Quick-fix

GitOrigin-RevId: 9f01fac2ecd4faf7ff76101a956cc30582ad421b
2020-05-12 08:00:09 +00:00

7 lines
143 B
Java

// "Replace with 'x'" "true"
class X {
void test(int x, int y) {
if (x != y) return;
System.out.println(Math.<caret>max(x, y));
}
}