mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
Partially fixes IDEA-180178 String concatenation as argument to 'StringBuilder.append()' call should be smarter
12 lines
246 B
Java
12 lines
246 B
Java
// "Convert variable 'res' from String to StringBuilder" "true"
|
|
|
|
public class Main {
|
|
String test(int[] ints) {
|
|
String res = "";
|
|
for (int i : ints) {
|
|
res = res <caret>+ i + "";
|
|
}
|
|
return res;
|
|
}
|
|
}
|