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