mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
fix format
This commit is contained in:
parent
61beaae235
commit
7b733ee09f
@ -336,10 +336,7 @@ public class CollectorUtil {
|
|||||||
}, (l, r) -> {
|
}, (l, r) -> {
|
||||||
final R resultMap = mapSupplier.get();
|
final R resultMap = mapSupplier.get();
|
||||||
resultMap.putAll(l);
|
resultMap.putAll(l);
|
||||||
r.forEach((k, v) -> {
|
r.forEach((k, v) -> resultMap.computeIfAbsent(k, i -> new ArrayList<>()).addAll(v));
|
||||||
final List<V> list = resultMap.computeIfAbsent(k, i -> new ArrayList<>());
|
|
||||||
list.addAll(v);
|
|
||||||
});
|
|
||||||
return resultMap;
|
return resultMap;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user