Files
Tagir Valeev cbe007679b [java] IDEA-293932 Extend selection selects unnecessary trailing whitespaces
GitOrigin-RevId: 40ce5ff3c6839ec4f1b2393964050e409fa1f658
2022-10-12 17:24:15 +00:00

8 lines
119 B
Java

class X {
void test(List<String> list) {
list.stream()
.m<caret>ap(x -> x)
.collect(toList());
}
}