Merge branch 'main' into remove_opennlp_synchronization

This commit is contained in:
Robert Muir 2022-11-19 23:12:07 -05:00
commit 56c8e079ff
No known key found for this signature in database
GPG Key ID: 817AE1DD322D7ECA
1 changed files with 1 additions and 1 deletions

View File

@ -1739,7 +1739,7 @@ class GeoStandardPath extends GeoBasePath {
componentStack.add(component); componentStack.add(component);
depthStack.add(0); depthStack.add(0);
while (depthStack.size() >= 2) { 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(); mergeTop();
} else { } else {
break; break;