mirror of https://github.com/apache/lucene.git
SOLR-11739: Remove cast no longer needed
This commit is contained in:
parent
61ea8f60b1
commit
250e5b2aba
|
@ -68,7 +68,7 @@ public class SizeLimitedDistributedMap extends DistributedMap {
|
|||
priorityQueue.insertWithOverflow(stat.getMzxid());
|
||||
}
|
||||
|
||||
long topElementMzxId = (Long) priorityQueue.top();
|
||||
long topElementMzxId = priorityQueue.top();
|
||||
|
||||
for (String child : children) {
|
||||
Stat stat = zookeeper.exists(dir + "/" + child, null, true);
|
||||
|
|
Loading…
Reference in New Issue