mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 15:44:48 +07:00
GitOrigin-RevId: c454f730670badff1df440b76adbd45de34c273a
8 lines
132 B
Java
8 lines
132 B
Java
// "Remove redundant argument to call 'A()'" "true-preview"
|
|
class A {
|
|
public A() { }
|
|
|
|
private void method() {
|
|
new A();
|
|
}
|
|
} |