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