diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt index 72dfba0b43f..624d721ee23 100644 --- a/lucene/CHANGES.txt +++ b/lucene/CHANGES.txt @@ -62,6 +62,8 @@ Improvements * LUCENE-10262: Lift up restrictions for navigating PointValues#PointTree added in LUCENE-9820 (Ignacio Vera) +* LUCENE-9538: Detect polygon self-intersections in the Tessellator. (Ignacio Vera) + Optimizations --------------------- diff --git a/lucene/core/src/java/org/apache/lucene/document/LatLonShape.java b/lucene/core/src/java/org/apache/lucene/document/LatLonShape.java index a35af354f94..8b1846140bf 100644 --- a/lucene/core/src/java/org/apache/lucene/document/LatLonShape.java +++ b/lucene/core/src/java/org/apache/lucene/document/LatLonShape.java @@ -19,7 +19,6 @@ package org.apache.lucene.document; import static org.apache.lucene.geo.GeoEncodingUtils.encodeLatitude; import static org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude; -import java.util.ArrayList; import java.util.List; import org.apache.lucene.document.ShapeField.QueryRelation; // javadoc import org.apache.lucene.document.ShapeField.Triangle; @@ -45,6 +44,8 @@ import org.apache.lucene.search.Query; * *