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:32 UTC

[lucene] 16/19: Fix the boxing issue again.

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 21fb195073f58169b737031b7c3a990b2c8093aa
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Wed Nov 23 08:29:12 2022 +0100

    Fix the boxing issue again.
---
 .../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 938257ab864..225c5978b43 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
@@ -1901,7 +1901,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;