Missing class parameter.

This commit is contained in:
Luc Maisonobe 2016-01-06 12:41:13 +01:00
parent 5246aa0529
commit 272a255004
1 changed files with 1 additions and 1 deletions

View File

@ -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