mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
11 lines
206 B
Java
11 lines
206 B
Java
public class Test {
|
|
public void test(){
|
|
for (int i=0; i<10; i++){
|
|
newMethod(i);
|
|
}
|
|
}
|
|
|
|
private void newMethod(int i) {
|
|
if (i == 5) System.out.println();
|
|
}
|
|
} |