mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 19:42:48 +07:00
7b5c5c2875
+Quick-fix GitOrigin-RevId: 9f01fac2ecd4faf7ff76101a956cc30582ad421b
7 lines
143 B
Java
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));
|
|
}
|
|
} |