mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
CharToStringIntention#stringForCharLiteral moved to PsiLiteralUtil Fixes IDEA-195621 "Expression can be folded into Stream chain" produces red code when delimiter is char type
7 lines
167 B
Java
7 lines
167 B
Java
// "Fold expression into 'String.join'" "true"
|
|
class Test {
|
|
String foo(String a, String b, String c) {
|
|
String s = String.join("_", a, b, c);
|
|
return s;
|
|
}
|
|
} |