mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
7 lines
127 B
Java
7 lines
127 B
Java
// "Change signature of 'f(int)' to 'f()'" "true"
|
|
class A {
|
|
void f() {}
|
|
public void foo() {
|
|
<caret>f();
|
|
}
|
|
} |