mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
13 lines
241 B
Java
13 lines
241 B
Java
class CallChain {
|
|
private void depth1() {
|
|
depth2("My first parameter");
|
|
}
|
|
|
|
private void depth2(String param) {
|
|
depth3();
|
|
}
|
|
|
|
private void dep<caret>th3() {
|
|
System.out.println("hello there");
|
|
}
|
|
} |