mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
231 B
Java
12 lines
231 B
Java
class Test {
|
|
void method() {
|
|
System.out.println("1");
|
|
newMethod();
|
|
System.out.println("4");
|
|
}
|
|
|
|
private void newMethod() {
|
|
System.out.println("2");
|
|
System.out.println("3");
|
|
}
|
|
} |