8344253: Test java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java failed
Reviewed-by: alanb
This commit is contained in:
parent
3e78ff16d3
commit
d76b5b888e
@ -3165,7 +3165,7 @@ public class ConcurrentSkipListMap<K,V> extends AbstractMap<K,V>
|
|||||||
current = n;
|
current = n;
|
||||||
Index<K,V> r = q.down;
|
Index<K,V> r = q.down;
|
||||||
row = (s.right != null) ? s : s.down;
|
row = (s.right != null) ? s : s.down;
|
||||||
est -= est >>> 2;
|
est >>>= 1;
|
||||||
return new KeySpliterator<K,V>(cmp, r, e, sk, est);
|
return new KeySpliterator<K,V>(cmp, r, e, sk, est);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3255,7 +3255,7 @@ public class ConcurrentSkipListMap<K,V> extends AbstractMap<K,V>
|
|||||||
current = n;
|
current = n;
|
||||||
Index<K,V> r = q.down;
|
Index<K,V> r = q.down;
|
||||||
row = (s.right != null) ? s : s.down;
|
row = (s.right != null) ? s : s.down;
|
||||||
est -= est >>> 2;
|
est >>>= 1;
|
||||||
return new ValueSpliterator<K,V>(cmp, r, e, sk, est);
|
return new ValueSpliterator<K,V>(cmp, r, e, sk, est);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3341,7 +3341,7 @@ public class ConcurrentSkipListMap<K,V> extends AbstractMap<K,V>
|
|||||||
current = n;
|
current = n;
|
||||||
Index<K,V> r = q.down;
|
Index<K,V> r = q.down;
|
||||||
row = (s.right != null) ? s : s.down;
|
row = (s.right != null) ? s : s.down;
|
||||||
est -= est >>> 2;
|
est >>>= 1;
|
||||||
return new EntrySpliterator<K,V>(cmp, r, e, sk, est);
|
return new EntrySpliterator<K,V>(cmp, r, e, sk, est);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user