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

Comparing jsr166/src/jdk7/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.22 by jsr166, Tue Jun 18 17:57:21 2013 UTC vs.
Revision 1.23 by jsr166, Tue Jun 18 18:32:43 2013 UTC

# Line 1777 | Line 1777 | public class ConcurrentHashMap<K,V> impl
1777                                      ++hc;
1778                                  }
1779                              }
1780 <                            ln = (lc <= UNTREEIFY_THRESHOLD ?  untreeify(lo) :
1780 >                            ln = (lc <= UNTREEIFY_THRESHOLD ? untreeify(lo) :
1781                                    (hc != 0) ? new TreeBin<K,V>(lo) : t);
1782                              hn = (hc <= UNTREEIFY_THRESHOLD ? untreeify(hi) :
1783                                    (lc != 0) ? new TreeBin<K,V>(hi) : t);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines