This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-numbers.git
The following commit(s) were added to refs/heads/master by this push: new 134133b Remove redundant calls to super(). 134133b is described below commit 134133bf7e556e3e5ff631bea0bc350c73d48ae8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 20 18:01:39 2020 -0500 Remove redundant calls to super(). --- .../src/test/java/org/apache/commons/numbers/complex/TestUtils.java | 1 - .../src/test/java/org/apache/commons/numbers/core/TestUtils.java | 1 - 2 files changed, 2 deletions(-) diff --git a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/TestUtils.java b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/TestUtils.java index eb85e68..5323c98 100644 --- a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/TestUtils.java +++ b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/TestUtils.java @@ -52,7 +52,6 @@ public final class TestUtils { * Collection of static methods used in math unit tests. */ private TestUtils() { - super(); } /** diff --git a/commons-numbers-core/src/test/java/org/apache/commons/numbers/core/TestUtils.java b/commons-numbers-core/src/test/java/org/apache/commons/numbers/core/TestUtils.java index 742de25..53d6d0b 100644 --- a/commons-numbers-core/src/test/java/org/apache/commons/numbers/core/TestUtils.java +++ b/commons-numbers-core/src/test/java/org/apache/commons/numbers/core/TestUtils.java @@ -31,7 +31,6 @@ public final class TestUtils { * Collection of static methods used in math unit tests. */ private TestUtils() { - super(); } /**