Files
Bas Leijdekkersandintellij-monorepo-bot 4a28c011bd Java: nicer quick-fix text
GitOrigin-RevId: c454f730670badff1df440b76adbd45de34c273a
2025-09-25 18:47:50 +00:00

8 lines
132 B
Java

// "Remove redundant argument to call 'A()'" "true-preview"
class A {
public A() { }
private void method() {
new A();
}
}