Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 10764 invoked from network); 10 Jun 2009 20:58:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Jun 2009 20:58:41 -0000 Received: (qmail 2655 invoked by uid 500); 10 Jun 2009 20:58:52 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 2564 invoked by uid 500); 10 Jun 2009 20:58:52 -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 2552 invoked by uid 99); 10 Jun 2009 20:58:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Jun 2009 20:58:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Wed, 10 Jun 2009 20:58:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BA58B23888CB; Wed, 10 Jun 2009 20:58:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r783516 - /commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java Date: Wed, 10 Jun 2009 20:58:29 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090610205829.BA58B23888CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Wed Jun 10 20:58:29 2009 New Revision: 783516 URL: http://svn.apache.org/viewvc?rev=783516&view=rev Log: fixed a forgotten field in copy constructor Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java?rev=783516&r1=783515&r2=783516&view=diff ============================================================================== --- commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java (original) +++ commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java Wed Jun 10 20:58:29 2009 @@ -77,7 +77,8 @@ */ public NordsieckStepInterpolator(final NordsieckStepInterpolator interpolator) { super(interpolator); - scalingH = interpolator.scalingH; + scalingH = interpolator.scalingH; + referenceTime = interpolator.referenceTime; if (interpolator.scaled != null) { scaled = interpolator.scaled.clone(); }