added a missing @Override

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@788047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-06-24 15:04:42 +00:00
parent fee5df4e6f
commit c8a6ed4c40
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}