--- jsr166/src/test/tck/ConcurrentHashMapTest.java 2021/01/26 13:33:05 1.63 +++ jsr166/src/test/tck/ConcurrentHashMapTest.java 2021/01/26 18:03:27 1.64 @@ -850,7 +850,7 @@ public class ConcurrentHashMapTest exten } catch (IllegalStateException success) {} } - static private Item findValue(ConcurrentHashMap map, + private static Item findValue(ConcurrentHashMap map, Item key) { return (key.value % 5 == 0) ? key : map.computeIfAbsent(new Item(key.value + 1), k -> new Item(findValue(map, k)));