Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 86006 invoked from network); 10 Jun 2008 19:22:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Jun 2008 19:22:23 -0000 Received: (qmail 29452 invoked by uid 500); 10 Jun 2008 19:22:18 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 29386 invoked by uid 500); 10 Jun 2008 19:22:18 -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 29351 invoked by uid 99); 10 Jun 2008 19:22:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Jun 2008 12:22:18 -0700 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; Tue, 10 Jun 2008 19:21:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4A3602388A0A; Tue, 10 Jun 2008 12:21:25 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r666287 - /commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/DerivativeException.java Date: Tue, 10 Jun 2008 19:21:25 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080610192125.4A3602388A0A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Tue Jun 10 12:21:24 2008 New Revision: 666287 URL: http://svn.apache.org/viewvc?rev=666287&view=rev Log: fixed a type error in array parameter (String[] instead of Object[] as in super constructor ... and all other exceptions) fixed a typo Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/DerivativeException.java Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/DerivativeException.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/DerivativeException.java?rev=666287&r1=666286&r2=666287&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/DerivativeException.java (original) +++ commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/DerivativeException.java Tue Jun 10 12:21:24 2008 @@ -21,7 +21,7 @@ /** * This exception is made available to users to report - * the error conditions that are trigegred while computing + * the error conditions that are triggered while computing * the differential equations. * @version $Revision$ $Date$ * @since 1.2 @@ -34,7 +34,7 @@ * @param specifier format specifier (to be translated) * @param parts to insert in the format (no translation) */ - public DerivativeException(String specifier, String[] parts) { + public DerivativeException(String specifier, Object[] parts) { super(specifier, parts); }