mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
31 lines
448 B
Java
31 lines
448 B
Java
// "Delete method 'test()'|->... along with other private methods used only there" "true"
|
|
class X {
|
|
private void t<caret>est() {
|
|
test1();
|
|
test2();
|
|
test3();
|
|
test4();
|
|
}
|
|
|
|
private void test1() {
|
|
test2();
|
|
test5();
|
|
}
|
|
|
|
private void test2() {
|
|
|
|
}
|
|
|
|
public void test3() {
|
|
test4();
|
|
}
|
|
|
|
private void test4() {
|
|
|
|
}
|
|
|
|
private void test5() {
|
|
|
|
}
|
|
}
|