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

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-geometry.git

commit 9176e0da0eca9249e7cfda7597eb9ecc4ca76ab3
Author: Alex Herbert <aherb...@apache.org>
AuthorDate: Fri Apr 25 12:18:34 2025 +0100

    Remove semi-colon to avoid false positive commented code analysis
---
 .../geometry/core/partitioning/test/TestLineSegmentCollection.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/test/TestLineSegmentCollection.java
 
b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/test/TestLineSegmentCollection.java
index 72e05d61..28edabc5 100644
--- 
a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/test/TestLineSegmentCollection.java
+++ 
b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/test/TestLineSegmentCollection.java
@@ -147,7 +147,7 @@ public final class TestLineSegmentCollection implements 
HyperplaneSubset<TestPoi
     @Override
     public RegionLocation classify(final TestPoint2D point) {
 
-        // simply return the first value that is not outside;
+        // simply return the first value that is not outside.
         // this is decidedly not robust but should work for testing purposes
         for (final TestLineSegment seg : segments) {
             final RegionLocation loc = seg.classify(point);

Reply via email to