remove unneeded cast

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@834250 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2009-11-09 21:55:16 +00:00
parent 7ce48cea93
commit a7f15d1589
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class TestPriorityQueue extends LuceneTestCase {
int last = Integer.MIN_VALUE;
for (int i = 0; i < count; i++)
{
Integer next = (Integer)pq.pop();
Integer next = pq.pop();
assertTrue(next.intValue() >= last);
last = next.intValue();
sum2 += last;