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.259 by dl, Mon Dec 22 12:58:17 2014 UTC vs.
Revision 1.260 by jsr166, Wed Dec 31 08:20:26 2014 UTC

# Line 2753 | Line 2753 | public class ConcurrentHashMap<K,V> exte
2753                                    (kc = comparableClassFor(k)) == null) ||
2754                                   (dir = compareComparables(kc, k, pk)) == 0)
2755                              dir = tieBreakOrder(k, pk);
2756 <                            TreeNode<K,V> xp = p;
2756 >                        TreeNode<K,V> xp = p;
2757                          if ((p = (dir <= 0) ? p.left : p.right) == null) {
2758                              x.parent = xp;
2759                              if (dir <= 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines