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 b37586cb1ecde5e6411db1ad0dad70f42c8e5b44 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Fri Apr 25 12:16:47 2025 +0100 Remove public keyword from text fixture --- .../geometry/core/partitioning/bsp/AbstractRegionBSPTreeTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/bsp/AbstractRegionBSPTreeTest.java b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/bsp/AbstractRegionBSPTreeTest.java index d49b999d..6de7b019 100644 --- a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/bsp/AbstractRegionBSPTreeTest.java +++ b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/partitioning/bsp/AbstractRegionBSPTreeTest.java @@ -51,7 +51,7 @@ class AbstractRegionBSPTreeTest { private TestRegionNode root; @BeforeEach - public void setup() { + void setup() { tree = new TestRegionBSPTree(); root = tree.getRoot(); }