mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
17 lines
218 B
Java
17 lines
218 B
Java
class Test {
|
|
|
|
public void method1()
|
|
{
|
|
newMethod();
|
|
}
|
|
|
|
public void method2()
|
|
{
|
|
newMethod();
|
|
}
|
|
|
|
private void newMethod() {
|
|
System.out.println(1);
|
|
System.out.println(2);
|
|
}
|
|
} |