mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
complete Collectors methods inside collect() call (IDEA-181449)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import java.util.*;
|
||||
|
||||
class Foo {
|
||||
void m() {
|
||||
Iterable<CharSequence> l = Arrays.asList("a", "b").stream().collect(<caret>)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
class Foo {
|
||||
void m() {
|
||||
Iterable<CharSequence> l = Arrays.asList("a", "b").stream().collect(Collectors.toList())
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user