mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
skip inference from parent for diamond's search for constructor (IDEA-101166)
This commit is contained in:
@@ -20,7 +20,7 @@ public class IDEA10166 {
|
||||
Supplier<M1> mapSupplier,
|
||||
BiConsumer<M1, T> accumulator) {
|
||||
BinaryOperator<M1> mapBinaryOperator = leftMapMerger(mergeFunction);
|
||||
return null;//new CollectorImpl<>(mapSupplier, accumulator, leftMapMerger(mergeFunction));
|
||||
return new CollectorImpl<>(mapSupplier, accumulator, leftMapMerger(mergeFunction));
|
||||
}
|
||||
|
||||
static <K, V, M2 extends Map<K, V>> BinaryOperator<M2> leftMapMerger(BinaryOperator<V> mergeFunction) {
|
||||
|
||||
Reference in New Issue
Block a user