Files
openide/java/java-tests/testData/inspection/manualMinMaxCalculation/beforeIfWithImplicitElse.java
Bas Leijdekkers 312cbd98d6 show method calls with () in "Manual min/max calculation" inspection messages
GitOrigin-RevId: 0be6faa7bd6ea391f53bc811fe8f3124424fd950
2022-01-31 10:13:14 +00:00

10 lines
171 B
Java

// "Replace with 'Math.min()' call" "true"
class Test {
public int mymin(int a, int b) {
if<caret>(a < b) {
return a;
}
return (/*comment*/(b));
}
}