mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
7 lines
179 B
Java
7 lines
179 B
Java
// "Fold expression into 'String.join'" "true-preview"
|
|
class Test {
|
|
String foo(String a, String b, String c) {
|
|
String s = a + <caret>'_' + b + '_' + c ;
|
|
return s;
|
|
}
|
|
} |