fixed boxed equality check to unbreak the build: has this code been tested????

This commit is contained in:
Robert Muir 2022-11-19 23:11:30 -05:00
parent 1e236090af
commit 8fdac2d88e
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);
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;