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

10 lines
217 B
Java

// "Remove redundant argument to call 'method(int, String)'" "true-preview"
class A {
public A() {
method(5, ""//before arg to delete
);//end line comment
}
private void method(int s, String s2) {
}
}