Files
Bas Leijdekkers 455e32759f Java: nicer quick-fix text
GitOrigin-RevId: 1194b033814fac3bdf672e8d3a4d7ccefc4dc35a
2025-09-25 18:47:50 +00:00

7 lines
152 B
Java

// "Remove 2nd parameter from method 'f()'" "true-preview"
class A {
void f(int i, int i2) {}
public void foo() {
<caret>f(1,1);
}
}