Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterSimple.java
Anna.Kozlova c4804ea189 comments based test data for remove arg fix
assume that argument with all comments inside should be deleted
2017-11-24 11:34:19 +01:00

10 lines
210 B
Java

// "Remove redundant arguments to call 'method(int, String)'" "true"
class A {
public A() {
method(5, ""//before arg to delete
);//end line comment
}
private void method(int s, String s2) {
}
}