mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
7 lines
205 B
Java
7 lines
205 B
Java
// "Change signature of 'f(int, String, int, int, char, String)' to 'f(int, int, String)'" "true"
|
|
class A {
|
|
void f(int i, int i2, String s) {}
|
|
public void foo() {
|
|
<caret>f(1,1,"4");
|
|
}
|
|
} |