mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 23:04:57 +07:00
0d63633751
GitOrigin-RevId: 3a998d7117ef6e94a7727a3f37d110905cc0c1bf
10 lines
267 B
Java
10 lines
267 B
Java
// "Replace Stream API chain with loop" "true-preview"
|
|
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Stream;
|
|
|
|
public final class TemplateTest {
|
|
void test() {
|
|
System.out.println(STR."\{Stream.of(1,2,3).<caret>collect(Collectors.toList())}");
|
|
}
|
|
} |