mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8344253: Test java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java failed
Reviewed-by: alanb
This commit is contained in:
parent
3e78ff16d3
commit
d76b5b888e
1 changed files with 3 additions and 3 deletions
|
@ -3165,7 +3165,7 @@ public class ConcurrentSkipListMap<K,V> extends AbstractMap<K,V>
|
|||
current = n;
|
||||
Index<K,V> r = q.down;
|
||||
row = (s.right != null) ? s : s.down;
|
||||
est -= est >>> 2;
|
||||
est >>>= 1;
|
||||
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;
|
||||
Index<K,V> r = q.down;
|
||||
row = (s.right != null) ? s : s.down;
|
||||
est -= est >>> 2;
|
||||
est >>>= 1;
|
||||
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;
|
||||
Index<K,V> r = q.down;
|
||||
row = (s.right != null) ? s : s.down;
|
||||
est -= est >>> 2;
|
||||
est >>>= 1;
|
||||
return new EntrySpliterator<K,V>(cmp, r, e, sk, est);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue