修改拼写错误的方法名。

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

@@ -102,6 +102,6 @@ public class SafeConcurrentHashMap<K, V> extends ConcurrentHashMap<K, V> {
/** {@inheritDoc} */
@Override
public V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) {
return ConcurrentHashMapUtil.computIfAbsent(this, key, mappingFunction);
return ConcurrentHashMapUtil.computeIfAbsent(this, key, mappingFunction);
}
}