SOLR-11739: Remove cast no longer needed

This commit is contained in:
Tomas Fernandez Lobbe 2018-02-15 16:22:28 -08:00
parent 61ea8f60b1
commit 250e5b2aba
1 changed files with 1 additions and 1 deletions

View File

@ -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);