This is an automated email from the ASF dual-hosted git repository. mattjuntunen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-geometry.git
commit 73fe3c04c66f3aa38b8c726dbac169b65fe90caf Author: Arturo Bernal <arturobern...@gmail.com> AuthorDate: Fri Dec 18 06:28:30 2020 +0100 Fix javadoc comment remove extra line --- .../test/java/org/apache/commons/geometry/core/GeometryTestUtils.java | 4 ++-- .../geometry/core/precision/EpsilonDoublePrecisionContextTest.java | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/GeometryTestUtils.java b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/GeometryTestUtils.java index 0ae6ec3..fe21385 100644 --- a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/GeometryTestUtils.java +++ b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/GeometryTestUtils.java @@ -56,7 +56,7 @@ public final class GeometryTestUtils { * given value. * @param executable the Executable instance * @param exceptionType the expected exception type - * @param message the expected exception message; ignored if null + * @param message the expected exception message */ public static <T extends Throwable> void assertThrowsWithMessage(final Executable executable, final Class<T> exceptionType, final String message) { Assertions.assertEquals(message, Assertions.assertThrows(exceptionType, executable).getMessage()); @@ -67,7 +67,7 @@ public final class GeometryTestUtils { * given regex. * @param executable the Executable instance * @param exceptionType the expected exception type - * @param pattern regex pattern to match; ignored if null + * @param pattern regex pattern to match */ public static <T extends Throwable> void assertThrowsWithMessage(final Executable executable, final Class<T> exceptionType, final Pattern pattern) { final String message = Assertions.assertThrows(exceptionType, executable).getMessage(); diff --git a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/precision/EpsilonDoublePrecisionContextTest.java b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/precision/EpsilonDoublePrecisionContextTest.java index 846b779..299eddb 100644 --- a/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/precision/EpsilonDoublePrecisionContextTest.java +++ b/commons-geometry-core/src/test/java/org/apache/commons/geometry/core/precision/EpsilonDoublePrecisionContextTest.java @@ -20,7 +20,6 @@ import org.apache.commons.geometry.core.GeometryTestUtils; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; - public class EpsilonDoublePrecisionContextTest { @Test