mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 11:49:20 +07:00
7b5c5c2875
+Quick-fix GitOrigin-RevId: 9f01fac2ecd4faf7ff76101a956cc30582ad421b
7 lines
142 B
Java
7 lines
142 B
Java
// "Replace with 'y'" "true"
|
|
class X {
|
|
void test(int x, int y) {
|
|
if (x > y) return;
|
|
System.out.println(Math.<caret>max(x, y));
|
|
}
|
|
} |