You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2015/12/04 11:35:43 UTC

[2/7] [math] Missing class parameter.

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/field-ode
Commit: 4c7c891daf489f126c91451010ea20f814a26bae
Parents: 6d8c636
Author: Luc Maisonobe <lu...@apache.org>
Authored: Fri Dec 4 11:32:00 2015 +0100
Committer: Luc Maisonobe <lu...@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