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 2011/10/02 12:10:12 UTC

svn commit: r1178170 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolator.java

Author: luc
Date: Sun Oct  2 10:10:12 2011
New Revision: 1178170

URL: http://svn.apache.org/viewvc?rev=1178170&view=rev
Log:
Fixed javadoc.

Modified:
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolator.java

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolator.java?rev=1178170&r1=1178169&r2=1178170&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolator.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolator.java Sun Oct  2 10:10:12 2011
@@ -67,8 +67,6 @@ public class DummyStepInterpolator
    * @param yDot reference to the integrator array holding the state
    * derivative at some arbitrary point within the step
    * @param forward integration direction indicator
-   * @param primaryMapper equations mapper for the primary equations set
-   * @param secondaryMappers equations mappers for the secondary equations sets
    */
   public DummyStepInterpolator(final double[] y, final double[] yDot, final boolean forward) {
     super(y, forward, new EquationsMapper(0, y.length), new EquationsMapper[0]);