mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
13 lines
203 B
Java
13 lines
203 B
Java
// "Change signature of 'f(String)' to 'f(int)'" "false"
|
|
public class Foo {
|
|
void foo(Bar f) {
|
|
f.f<caret>(2);
|
|
}
|
|
}
|
|
class Bar {
|
|
private void f(int i){}
|
|
public void f(String s){}
|
|
|
|
|
|
}
|