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 2008/06/10 21:21:25 UTC

svn commit: r666287 - /commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/DerivativeException.java

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);
   }