mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 19:28:23 +07:00
14 lines
357 B
Java
14 lines
357 B
Java
// "Replace with collect" "true"
|
|
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.IntStream;
|
|
|
|
public class Test {
|
|
static String test(List<String> list) {
|
|
int BUFLENGTH = 42;
|
|
char CH = 'a';
|
|
|
|
String sb = IntStream.range(0, BUFLENGTH >> 1).mapToObj(i -> "\u041b" + CH + 'i').collect(Collectors.joining());
|
|
}
|
|
} |