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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.214 by jsr166, Wed May 22 16:24:25 2013 UTC vs.
Revision 1.215 by dl, Wed May 22 20:42:30 2013 UTC

# Line 581 | Line 581 | public class ConcurrentHashMap<K,V> impl
581       * Key-value entry.  This class is never exported out as a
582       * user-mutable Map.Entry (i.e., one supporting setValue; see
583       * MapEntry below), but can be used for read-only traversals used
584 <     * in curom bulk tasks.  Nodes with a hash field of MOVED are
585 <     * special, and do not contain user keys or values (and are never
584 >     * in bulk tasks.  Nodes with a hash field of MOVED are special,
585 >     * and do not contain user keys or values (and are never
586       * exported).  Otherwise, keys and vals are never null.
587       */
588      static class Node<K,V> implements Map.Entry<K,V> {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines