Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 37350 invoked from network); 6 Mar 2010 21:31:17 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Mar 2010 21:31:17 -0000 Received: (qmail 21457 invoked by uid 500); 6 Mar 2010 21:30:59 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 21408 invoked by uid 500); 6 Mar 2010 21:30:59 -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 21400 invoked by uid 99); 6 Mar 2010 21:30:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Mar 2010 21:30:59 +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; Sat, 06 Mar 2010 21:30:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5683023889C5; Sat, 6 Mar 2010 21:30:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r919855 - in /commons/proper/math/trunk: findbugs-exclude-filter.xml src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java Date: Sat, 06 Mar 2010 21:30:38 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100306213038.5683023889C5@eris.apache.org> Author: luc Date: Sat Mar 6 21:30:37 2010 New Revision: 919855 URL: http://svn.apache.org/viewvc?rev=919855&view=rev Log: fixed findbugs errors Modified: commons/proper/math/trunk/findbugs-exclude-filter.xml commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java Modified: commons/proper/math/trunk/findbugs-exclude-filter.xml URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/findbugs-exclude-filter.xml?rev=919855&r1=919854&r2=919855&view=diff ============================================================================== --- commons/proper/math/trunk/findbugs-exclude-filter.xml (original) +++ commons/proper/math/trunk/findbugs-exclude-filter.xml Sat Mar 6 21:30:37 2010 @@ -109,6 +109,11 @@ + + + + + Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java?rev=919855&r1=919854&r2=919855&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java Sat Mar 6 21:30:37 2010 @@ -597,6 +597,12 @@ private double[][] dydpDot; /** Simple constructor. + *

This constructor is used only for externalization. It does nothing.

+ */ + public StepInterpolatorWrapper() { + } + + /** Simple constructor. * @param interpolator wrapped interpolator * @param n dimension of the original ODE * @param k number of parameters