mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
7 lines
150 B
Java
7 lines
150 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);
|
|
}
|
|
} |