ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java (file contents):
Revision 1.173 by dl, Wed Aug 16 09:51:25 2017 UTC vs.
Revision 1.174 by jsr166, Wed Aug 16 16:41:04 2017 UTC

# Line 327 | Line 327 | public class ConcurrentSkipListMap<K,V>
327       * Nodes hold keys and values, and are singly linked in sorted
328       * order, possibly with some intervening marker nodes. The list is
329       * headed by a header node accessible as head.node. Headers and
330 <     * marker nodes have have null keys. The val field (but currently
331 <     * not the key field) is nulled out upon deletion.
330 >     * marker nodes have null keys. The val field (but currently not
331 >     * the key field) is nulled out upon deletion.
332       */
333      static final class Node<K,V> {
334          final K key; // currently, never detached

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines