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 70f19a03a8975cd7146e728309936445914ae91b
Author: Alex Herbert <aherb...@apache.org>
AuthorDate: Fri Apr 25 12:54:14 2025 +0100

    sonar fix: remove unthrown exception from test method signature
---
 .../commons/geometry/euclidean/threed/RegionBSPTree3DTest.java      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3DTest.java
 
b/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3DTest.java
index 1f2df501..1fd2c514 100644
--- 
a/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3DTest.java
+++ 
b/commons-geometry-euclidean/src/test/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3DTest.java
@@ -1523,7 +1523,7 @@ class RegionBSPTree3DTest {
     }
 
     @Test
-    void testBoolean_xor_cubeAndSphere() throws IOException {
+    void testBoolean_xor_cubeAndSphere() {
         // arrange
         final double tolerance = 0.05;
         final double size = 1.0;
@@ -1599,7 +1599,7 @@ class RegionBSPTree3DTest {
     }
 
     @Test
-    void testBoolean_difference() throws IOException {
+    void testBoolean_difference() {
         // arrange
         final double tolerance = 0.05;
         final double size = 1.0;
@@ -1673,7 +1673,7 @@ class RegionBSPTree3DTest {
     }
 
     @Test
-    void testBoolean_multiple() throws IOException {
+    void testBoolean_multiple() {
         // arrange
         final double tolerance = 0.05;
         final double size = 1.0;

Reply via email to