On Wed, 9 Sep 2026 14:02:15 GMT, Fabian Meumertzheim <[email protected]> wrote:

> ---------
> - [x] I confirm that I make this contribution in accordance with the [OpenJDK 
> Interim AI Policy](https://openjdk.org/legal/ai).

src/java.base/share/classes/java/util/concurrent/ConcurrentSkipListMap.java 
line 2654:

> 2652:             }
> 2653:             Node<K,V> n = m.findNear(key, rel, cmp);
> 2654:             return (n == null || !inBounds(n.key, cmp)) ? null : n.key;

@fmeum So this is now relying on the fact that `findNear` will not return nodes 
with null `val`s anymore?

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/32793#discussion_r4039405982

Reply via email to