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.227 by jsr166, Tue Jun 18 18:32:43 2013 UTC vs.
Revision 1.228 by jsr166, Tue Jun 18 18:39:14 2013 UTC

# Line 2384 | Line 2384 | public class ConcurrentHashMap<K,V> impl
2384                                      ++hc;
2385                                  }
2386                              }
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);
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;
2391                          }
2392                          else
2393                              ln = hn = null;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines