mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
17 lines
231 B
Java
17 lines
231 B
Java
// "Delete method 'test()'|->... along with other private methods used only there" "true"
|
|
class X {
|
|
|
|
private void test2() {
|
|
|
|
}
|
|
|
|
public void test3() {
|
|
test4();
|
|
}
|
|
|
|
private void test4() {
|
|
|
|
}
|
|
|
|
}
|