mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
16 lines
317 B
Java
16 lines
317 B
Java
class Test {
|
|
public void test(int x, int y) {
|
|
while (x < y) {
|
|
if (newMethod(x, y)) continue;
|
|
x++;
|
|
}
|
|
}
|
|
|
|
private boolean newMethod(int x, int y) {
|
|
if (x == y) {
|
|
System.out.println();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
} |