mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
11 lines
201 B
Java
11 lines
201 B
Java
public class Test {
|
|
public void test(){
|
|
for (int i=0; i<10; i++){
|
|
if (newMethod(i)) break;
|
|
}
|
|
}
|
|
|
|
private boolean newMethod(int i) {
|
|
return i == 5;
|
|
}
|
|
} |