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