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.266 by dl, Mon Feb 23 19:51:36 2015 UTC vs.
Revision 1.267 by jsr166, Mon Feb 23 20:54:08 2015 UTC

# Line 2588 | Line 2588 | public class ConcurrentHashMap<K,V> exte
2588       * too small, in which case resizes instead.
2589       */
2590      private final void treeifyBin(Node<K,V>[] tab, int index) {
2591 <        Node<K,V> b; int n, sc;
2591 >        Node<K,V> b; int n;
2592          if (tab != null) {
2593              if ((n = tab.length) < MIN_TREEIFY_CAPACITY)
2594                  tryPresize(n << 1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines