From 8fdac2d88e93f18b4e2211329d4c62c125e94eea Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Sat, 19 Nov 2022 23:11:30 -0500 Subject: [PATCH] fixed boxed equality check to unbreak the build: has this code been tested???? --- .../java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java index f975ecac4e2..0bbd23f005f 100755 --- a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java +++ b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java @@ -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;