You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kw...@apache.org on 2022/11/23 23:52:22 UTC

[lucene] 06/19: fixed boxed equality check to unbreak the build: has this code been tested????

This is an automated email from the ASF dual-hosted git repository.

kwright pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/lucene.git

commit d830aee2842548a79fc638eddda44546049bc0bd
Author: Robert Muir <rm...@apache.org>
AuthorDate: Sat Nov 19 23:11:30 2022 -0500

    fixed boxed equality check to unbreak the build: has this code been tested????
---
 .../src/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;