mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
7 lines
149 B
Java
7 lines
149 B
Java
// "Change signature of 'f(int, String)' to 'f()'" "true"
|
|
class A {
|
|
void f(int i,String s) {}
|
|
public void foo() {
|
|
<caret>f();
|
|
}
|
|
} |