mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
inference: propagate variable renames through the call hierarchy; calculate tooltips in tests (IDEA-151948)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
class BigNumber {
|
||||
public <U, V> void toTypeMap(Stream<U> p) {
|
||||
Function<U, V> map2 = p.collect(Collectors.toMap(Function.identity(<caret>), Function.identity()));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user