mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 01bda01714863b5c174c85350542cb1c49440e42
17 lines
350 B
Java
17 lines
350 B
Java
class Test {
|
|
public void test(int x , int y) {
|
|
while (x < 10) {
|
|
x++;
|
|
if (x <= y) {
|
|
newMethod(x, y);
|
|
} else {
|
|
System.out.println();
|
|
}
|
|
}
|
|
}
|
|
|
|
private void newMethod(int x, int y) {
|
|
if (x == y) return;
|
|
System.out.println();
|
|
}
|
|
} |