fix silly stack-building test bug in BKD visitor forensics

This commit is contained in:
Mike McCandless 2016-04-11 05:42:59 -04:00
parent 604fb28b58
commit 38bf7dd834
1 changed files with 1 additions and 1 deletions

View File

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