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