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.226 by jsr166, Tue Jun 18 17:57:21 2013 UTC vs.
Revision 1.227 by jsr166, Tue Jun 18 18:32:43 2013 UTC

# Line 2384 | Line 2384 | public class ConcurrentHashMap<K,V> impl
2384                                      ++hc;
2385                                  }
2386                              }
2387 <                            ln = (lc <= UNTREEIFY_THRESHOLD ?  untreeify(lo) :
2387 >                            ln = (lc <= UNTREEIFY_THRESHOLD ? untreeify(lo) :
2388                                    (hc != 0) ? new TreeBin<K,V>(lo) : t);
2389                              hn = (hc <= UNTREEIFY_THRESHOLD ? untreeify(hi) :
2390                                    (lc != 0) ? new TreeBin<K,V>(hi) : t);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines