mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 06:39:33 +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()
|
|
.map(x <caret>-> x)
|
|
</selection> .collect(toList());
|
|
}
|
|
}
|