提交 b73fb0a3 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Use keyIterator() in ceilingKey()

上级 f5f7a370
......@@ -1348,12 +1348,8 @@ public class TransactionStore {
* @return the result
*/
public K ceilingKey(K key) {
key = map.ceilingKey(key);
while (key != null && get(key) == null) {
// Use higherKey() for the next attempts, otherwise we'll get an infinite loop
key = map.higherKey(key);
}
return key;
Iterator<K> it = keyIterator(key);
return it.hasNext() ? it.next() : null;
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论