You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2018/03/02 09:36:10 UTC

[3/3] commons-numbers git commit: NUMBERS-53: Removal of ComplexTest method extending Complex objects

NUMBERS-53: Removal of ComplexTest method extending Complex objects

Project: http://git-wip-us.apache.org/repos/asf/commons-numbers/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-numbers/commit/2f23f3e1
Tree: http://git-wip-us.apache.org/repos/asf/commons-numbers/tree/2f23f3e1
Diff: http://git-wip-us.apache.org/repos/asf/commons-numbers/diff/2f23f3e1

Branch: refs/heads/master
Commit: 2f23f3e17e0d1c0af516f0147de85d5c01cba45b
Parents: 5dd6343
Author: Eric Barnhill <er...@apache.org>
Authored: Fri Mar 2 10:38:31 2018 +0100
Committer: Eric Barnhill <er...@apache.org>
Committed: Fri Mar 2 10:38:31 2018 +0100

----------------------------------------------------------------------
 .../commons/numbers/complex/ComplexTest.java     | 19 -------------------
 1 file changed, 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-numbers/blob/2f23f3e1/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java
----------------------------------------------------------------------
diff --git a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java
index e147fe0..b780f4b 100644
--- a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java
+++ b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java
@@ -822,23 +822,4 @@ public class ComplexTest {
     }
     */
 
-    /**
-     * Class to test extending Complex
-     */
-    public static class TestComplex extends Complex {
-
-        /**
-         * Serialization identifier.
-         */
-        private static final long serialVersionUID = 3268726724160389237L;
-
-        public TestComplex(double real, double imaginary) {
-            super(real, imaginary);
-        }
-
-        public TestComplex(Complex other){
-            this(other.getReal(), other.getImaginary());
-        }
-
-    }
 }