Missing class parameter.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/4c7c891d
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/4c7c891d
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/4c7c891d

Branch: refs/heads/MATH_3_X
Commit: 4c7c891daf489f126c91451010ea20f814a26bae
Parents: 6d8c636
Author: Luc Maisonobe <l...@apache.org>
Authored: Fri Dec 4 11:32:00 2015 +0100
Committer: Luc Maisonobe <l...@apache.org>
Committed: Fri Dec 4 11:32:00 2015 +0100

----------------------------------------------------------------------
 .../commons/math3/ode/nonstiff/EulerFieldStepInterpolatorTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/4c7c891d/src/test/java/org/apache/commons/math3/ode/nonstiff/EulerFieldStepInterpolatorTest.java
----------------------------------------------------------------------
diff --git 
a/src/test/java/org/apache/commons/math3/ode/nonstiff/EulerFieldStepInterpolatorTest.java
 
b/src/test/java/org/apache/commons/math3/ode/nonstiff/EulerFieldStepInterpolatorTest.java
index 5e1aecd..4c3c608 100644
--- 
a/src/test/java/org/apache/commons/math3/ode/nonstiff/EulerFieldStepInterpolatorTest.java
+++ 
b/src/test/java/org/apache/commons/math3/ode/nonstiff/EulerFieldStepInterpolatorTest.java
@@ -28,7 +28,7 @@ public class EulerFieldStepInterpolatorTest extends 
AbstractRungeKuttaFieldStepI
 
     protected <T extends RealFieldElement<T>> 
RungeKuttaFieldStepInterpolator<T>
     createInterpolator(Field<T> field, boolean forward, 
FieldEquationsMapper<T> mapper) {
-        return new EulerFieldStepInterpolator<>(field, forward, mapper);
+        return new EulerFieldStepInterpolator<T>(field, forward, mapper);
     }
 
     @Test

Reply via email to