Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/foldIntoStream/beforeConcatJoin.java

6 lines
189 B
Java

// "Fold expression into 'String.join'" "true"
class Test {
void test(String a, String b, String c, String d) {
String result = a + "," + b + ((",")) + c + ","<caret> + d + ",";
}
}