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 b171da7ac6986046dc603c8a9ec1d801252d52d8
Author: Alex Herbert <aherb...@apache.org>
AuthorDate: Wed Sep 24 14:12:03 2025 +0100

    pmd fix: remove redundant field initialiser
---
 .../geometry/io/euclidean/threed/AbstractBoundaryReadHandler3D.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/AbstractBoundaryReadHandler3D.java
 
b/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/AbstractBoundaryReadHandler3D.java
index 3bc20d12..2f4b70e6 100644
--- 
a/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/AbstractBoundaryReadHandler3D.java
+++ 
b/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/AbstractBoundaryReadHandler3D.java
@@ -107,7 +107,7 @@ public abstract class AbstractBoundaryReadHandler3D 
implements BoundaryReadHandl
         private final FacetDefinitionReader reader;
 
         /** Number of facets read from the reader. */
-        private int loadCount = 0;
+        private int loadCount;
 
         /** Next facet to return from the instance; may be null. */
         private FacetDefinition next;

Reply via email to