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.246 by dl, Sat Aug 31 19:41:39 2013 UTC vs.
Revision 1.247 by jsr166, Sun Sep 1 04:49:06 2013 UTC

# Line 3184 | Line 3184 | public class ConcurrentHashMap<K,V> exte
3184  
3185      /* ----------------Table Traversal -------------- */
3186  
3187 <   /**
3188 <    * Records the table, its length, and current traversal index for a
3189 <    * traverser that must process a region of a forwarded table before
3190 <    * proceeding with current table.
3191 <    */
3192 <    final static class TableStack<K,V> {
3187 >    /**
3188 >     * Records the table, its length, and current traversal index for a
3189 >     * traverser that must process a region of a forwarded table before
3190 >     * proceeding with current table.
3191 >     */
3192 >    static final class TableStack<K,V> {
3193          int length;
3194          int index;
3195          Node<K,V>[] tab;
3196 <        TableStack<K, V> next;
3196 >        TableStack<K,V> next;
3197      }
3198  
3199      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines