mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
21 lines
381 B
Java
21 lines
381 B
Java
class C {
|
|
void foo() {
|
|
for(int i = 0; i < 10; i++){
|
|
if (newMethod(i)) continue;
|
|
System.out.println("");
|
|
}
|
|
}
|
|
|
|
private boolean newMethod(int i) {
|
|
if (i < 10){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
{
|
|
for(int i = 0; i < 10; i++){
|
|
if (newMethod(i)) continue;
|
|
}
|
|
}
|
|
} |