mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 15:53:38 +07:00
GitOrigin-RevId: 3aae5c738d48c38144f6a78c36738121831ae5a5
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");
|
|
}
|
|
} |