mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
method info: walk up for resolved candidate (IDEA-181445)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
class Test {
|
||||
void m(Map<String, String> s) {
|
||||
s.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, <caret>Map.Entry::getValue));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user