修改拼写错误的方法名。

This commit is contained in:
2023-09-09 11:07:00 +08:00
parent ef43b4dd87
commit fd2190e4f6
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ import xyz.zhouxy.plusone.commons.base.JRE;
public class ConcurrentHashMapUtil { // TODO 添加文档注释
public static <K, V> V computIfAbsent(ConcurrentHashMap<K, V> map, final K key, final Function<? super K, ? extends V> mappingFunction) {
public static <K, V> V computeIfAbsent(ConcurrentHashMap<K, V> map, final K key, final Function<? super K, ? extends V> mappingFunction) {
if (JRE.isJava8()) {
Objects.requireNonNull(mappingFunction);
V v = map.get(key);