--- jsr166/src/jsr166e/ConcurrentHashMapV8.java 2013/12/01 20:55:50 1.120 +++ jsr166/src/jsr166e/ConcurrentHashMapV8.java 2013/12/21 21:32:34 1.121 @@ -2579,7 +2579,7 @@ public class ConcurrentHashMapV8 ex final TreeNode findTreeNode(int h, Object k, Class kc) { if (k != null) { TreeNode p = this; - do { + do { int ph, dir; K pk; TreeNode q; TreeNode pl = p.left, pr = p.right; if ((ph = p.hash) > h) @@ -3028,7 +3028,7 @@ public class ConcurrentHashMapV8 ex static TreeNode balanceDeletion(TreeNode root, TreeNode x) { - for (TreeNode xp, xpl, xpr;;) { + for (TreeNode xp, xpl, xpr;;) { if (x == null || x == root) return root; else if ((xp = x.parent) == null) {