mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 40ce5ff3c6839ec4f1b2393964050e409fa1f658
8 lines
142 B
Java
8 lines
142 B
Java
class X {
|
|
void test(List<String> list) {
|
|
<selection> list.stream()
|
|
.m<caret>ap(x -> x)
|
|
</selection> .collect(toList());
|
|
}
|
|
}
|