mirror of https://github.com/apache/lucene.git
fix silly stack-building test bug in BKD visitor forensics
This commit is contained in:
parent
604fb28b58
commit
38bf7dd834
|
@ -1248,7 +1248,7 @@ public class TestGeo3DPoint extends LuceneTestCase {
|
|||
if (firstPhase) {
|
||||
|
||||
// Pop stack:
|
||||
while (stack.size() > 0 && stack.get(stack.size()-1).contains(cell)) {
|
||||
while (stack.size() > 0 && stack.get(stack.size()-1).contains(cell) == false) {
|
||||
stack.remove(stack.size()-1);
|
||||
//System.out.println(" pop");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue