mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
修复Dict缺少putIfAbsent、computeIfAbsent问题
This commit is contained in:
parent
fad4886722
commit
e3b296e89d
@ -25,6 +25,7 @@
|
||||
* 【core 】 ReUtil增加getAllGroups重载(pr#2455@Github)
|
||||
* 【core 】 PageUtil#totalPage增加totalCount为long类型的重载方法(pr#2442@Github)
|
||||
* 【crypto 】 PemUtil.readPemPrivateKey支持pkcs#1格式,增加OpensslKeyUtil(pr#2456@Github)
|
||||
* 【core 】 添加了通用的注解扫描器 `GenericAnnotationScanner`,并在 `AnnotationScanner` 接口中统一提供了提前配置好的扫描器静态实例(pr#715@Github)
|
||||
*
|
||||
### 🐞Bug修复
|
||||
* 【core 】 修复CollUtil里面关于可变参数传null造成的crash问题(pr#2428@Github)
|
||||
@ -32,6 +33,7 @@
|
||||
* 【core 】 修复当时间戳为Integer时时间转换问题(pr#2449@Github)
|
||||
* 【core 】 修复bmp文件判断问题(issue#I5H93G@Gitee)
|
||||
* 【core 】 修复CombinationAnnotationElement造成递归循环(issue#I5FQGW@Gitee)
|
||||
* 【core 】 修复Dict缺少putIfAbsent、computeIfAbsent问题(issue#I5FQGW@Gitee)
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
@ -2,6 +2,7 @@ package cn.hutool.core.map;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.function.BiFunction;
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
/**
|
||||
@ -98,6 +99,16 @@ public abstract class TransMap<K, V> extends MapWrapper<K, V> {
|
||||
public V merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
|
||||
return super.merge(customKey(key), customValue(value), (v1, v2) -> remappingFunction.apply(customValue(v1), customValue(v2)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public V putIfAbsent(K key, V value) {
|
||||
return super.putIfAbsent(customKey(key), customValue(value));
|
||||
}
|
||||
|
||||
@Override
|
||||
public V computeIfAbsent(final K key, final Function<? super K, ? extends V> mappingFunction) {
|
||||
return super.computeIfAbsent(customKey(key), mappingFunction);
|
||||
}
|
||||
//---------------------------------------------------------------------------- Override default methods end
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user