mirror of https://github.com/apache/lucene.git
Merge branch 'main' into remove_opennlp_synchronization
This commit is contained in:
commit
56c8e079ff
|
@ -1739,7 +1739,7 @@ class GeoStandardPath extends GeoBasePath {
|
|||
componentStack.add(component);
|
||||
depthStack.add(0);
|
||||
while (depthStack.size() >= 2) {
|
||||
if (depthStack.get(depthStack.size() - 1) == depthStack.get(depthStack.size() - 2)) {
|
||||
if (depthStack.get(depthStack.size() - 1).equals(depthStack.get(depthStack.size() - 2))) {
|
||||
mergeTop();
|
||||
} else {
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue