mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
11 lines
198 B
Java
11 lines
198 B
Java
class KeepSignature {
|
|
void hello() {
|
|
newMethod();
|
|
System.out.println("Bar");
|
|
newMethod();
|
|
}
|
|
|
|
private void newMethod() {
|
|
System.out.println("Foo");
|
|
}
|
|
} |