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 ae35650754cb8a17d5d0e822923bdd7f96d7e6af Author: Alex Herbert <aherb...@apache.org> AuthorDate: Fri Apr 25 13:01:53 2025 +0100 Remove public modifier from test class --- .../commons/geometry/euclidean/threed/hull/ConvexHull3DTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/hull/ConvexHull3DTest.java b/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/hull/ConvexHull3DTest.java index 015669d2..bbc5af62 100644 --- a/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/hull/ConvexHull3DTest.java +++ b/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/hull/ConvexHull3DTest.java @@ -42,7 +42,7 @@ import org.apache.commons.rng.simple.RandomSource; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -public class ConvexHull3DTest { +class ConvexHull3DTest { private static final double TEST_EPS = 1e-10; @@ -53,7 +53,7 @@ public class ConvexHull3DTest { private UniformRandomProvider random; @BeforeEach - public void setUp() { + void setUp() { builder = new ConvexHull3D.Builder(TEST_PRECISION); random = RandomSource.XO_SHI_RO_256_PP.create(10); }