mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
8 lines
142 B
Java
8 lines
142 B
Java
class X {
|
|
void test(List<String> list) {
|
|
<selection> list.stream()
|
|
.map(x <caret>-> x)
|
|
</selection> .collect(toList());
|
|
}
|
|
}
|