Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BEDB471F8 for ; Sun, 2 Oct 2011 10:10:34 +0000 (UTC) Received: (qmail 76407 invoked by uid 500); 2 Oct 2011 10:10:34 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 76343 invoked by uid 500); 2 Oct 2011 10:10:34 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 76336 invoked by uid 99); 2 Oct 2011 10:10:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Oct 2011 10:10:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Oct 2011 10:10:33 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D430D23888CD for ; Sun, 2 Oct 2011 10:10:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1178170 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolator.java Date: Sun, 02 Oct 2011 10:10:12 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111002101012.D430D23888CD@eris.apache.org> 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]);