blob: 7da7927a1df1407e617da17319d6328a82053601 [file] [log] [blame]
// "Remove redundant arguments to call 'method(int, String)'" "true"
class A {
public A() {
method(5, "");
}
private void method(int s, String s2) {
}
}