Files
Yuriy Artamonov 47f1c44a90 [java] IJPL-158521 Actions: fix ellipsis in messages for Java actions
GitOrigin-RevId: bfce0d6efa8747660c4b9af3d8defbfa47e4509a
2024-09-15 14:50:09 +00:00

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() {
}
}