Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeSimple.java
T

9 lines
177 B
Java

// "Remove redundant arguments to match 'method(int, String)'" "true"
class A {
public A() {
method(5, "",<caret> 10);
}
private void method(int s, String s2) {
}
}