mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
355 B
Java
16 lines
355 B
Java
// "Convert variable 'res' from String to StringBuilder (null-safe)" "true-preview"
|
|
|
|
class Main {
|
|
String test(String[] strings) {
|
|
String res = null;
|
|
for (String s : strings) {
|
|
if(res == null) {
|
|
res = s;
|
|
} else {
|
|
res<caret>+=s;
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
}
|