This commit is contained in:
Looly 2023-04-01 01:14:46 +08:00
parent 74071035e1
commit 8ceaaa6428
2 changed files with 0 additions and 2 deletions

View File

@ -1487,7 +1487,6 @@ public class MapUtil {
value = map.get(key);
// 判空后调用依旧无法解决死循环问题
// Issue2349Test
//value = map.computeIfAbsent(key, mappingFunction);
}
return value;

View File

@ -78,7 +78,6 @@ public class SafeConcurrentHashMap<K, V> extends ConcurrentHashMap<K, V> {
value = get(key);
// 判空后调用依旧无法解决死循环问题
// Issue2349Test
//value = map.computeIfAbsent(key, mappingFunction);
}
return value;