You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2011/02/23 16:15:21 UTC

svn commit: r1073772 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java

Author: erans
Date: Wed Feb 23 15:15:19 2011
New Revision: 1073772

URL: http://svn.apache.org/viewvc?rev=1073772&view=rev
Log:
Wrong call.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java?rev=1073772&r1=1073771&r2=1073772&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java Wed Feb 23 15:15:19 2011
@@ -40,7 +40,7 @@ public class MathIllegalStateException e
     public MathIllegalStateException(Localizable specific,
                                      Localizable general,
                                      Object ... args) {
-        super(null, null, specific, general, args);
+        super(null, specific, general, args);
     }
 
     /**
@@ -65,7 +65,7 @@ public class MathIllegalStateException e
      */
     public MathIllegalStateException(Localizable specific,
                                      Object ... args) {
-        super(null, specific, LocalizedFormats.ILLEGAL_STATE, args);
+        this(specific, LocalizedFormats.ILLEGAL_STATE, args);
     }
 
     /**