mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
8 lines
125 B
Java
8 lines
125 B
Java
// "Remove redundant arguments to call 'A()'" "true"
|
|
class A {
|
|
public A() { }
|
|
|
|
private void method() {
|
|
new A();
|
|
}
|
|
} |