Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/moveParenthesis/afterShiftLeft1.java
Tagir Valeev 5b88621295 [java-intentions] IDEA-249810 Automatically fix closing parentheses in nested calls
GitOrigin-RevId: 9447905d0f2fda68b7f61b9310088b2f109d6b0e
2020-09-03 03:45:03 +00:00

14 lines
235 B
Java

// "Fix closing parenthesis placement" "true"
public class Example {
String foo(String s, boolean b, boolean c) {
return s;
}
String bar(String s) {
return s;
}
void test() {
foo(bar("hello"), true, true);
}
}