mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 22:35:40 +07:00
7b5c5c2875
+Quick-fix GitOrigin-RevId: 9f01fac2ecd4faf7ff76101a956cc30582ad421b
7 lines
122 B
Java
7 lines
122 B
Java
// "Replace with 'y'" "true"
|
|
class X {
|
|
void test(int x, int y) {
|
|
if (x > y) return;
|
|
System.out.println(y);
|
|
}
|
|
} |