From c8a6ed4c40ae9deccf1722dd503418661998e937 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Wed, 24 Jun 2009 15:04:42 +0000 Subject: [PATCH] added a missing @Override git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@788047 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/org/apache/commons/math/complex/ComplexTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/org/apache/commons/math/complex/ComplexTest.java b/src/test/org/apache/commons/math/complex/ComplexTest.java index 783081a67..0112f9dcd 100644 --- a/src/test/org/apache/commons/math/complex/ComplexTest.java +++ b/src/test/org/apache/commons/math/complex/ComplexTest.java @@ -940,7 +940,8 @@ public class ComplexTest extends TestCase { public TestComplex(Complex other){ this(other.getReal(), other.getImaginary()); } - + + @Override protected TestComplex createComplex(double real, double imaginary){ return new TestComplex(real, imaginary); }