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

Comparing jsr166/src/jdk8/java/util/HashMap.java (file contents):
Revision 1.1 by jsr166, Tue Sep 26 16:49:58 2017 UTC vs.
Revision 1.2 by jsr166, Tue Sep 26 16:52:48 2017 UTC

# Line 2268 | Line 2268 | public class HashMap<K,V> extends Abstra
2268  
2269          static <K,V> TreeNode<K,V> balanceDeletion(TreeNode<K,V> root,
2270                                                     TreeNode<K,V> x) {
2271 <            for (TreeNode<K,V> xp, xpl, xpr;;)  {
2271 >            for (TreeNode<K,V> xp, xpl, xpr;;) {
2272                  if (x == null || x == root)
2273                      return root;
2274                  else if ((xp = x.parent) == null) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines