From a44563d2024bd6869e005a8b42d85e06cbc12f23 Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Wed, 23 Feb 2011 15:15:19 +0000 Subject: [PATCH] Wrong call. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1073772 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math/exception/MathIllegalStateException.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java b/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java index 18e167f97..dd30dd99a 100644 --- a/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java +++ b/src/main/java/org/apache/commons/math/exception/MathIllegalStateException.java @@ -40,7 +40,7 @@ public class MathIllegalStateException extends MathRuntimeException { 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 extends MathRuntimeException { */ public MathIllegalStateException(Localizable specific, Object ... args) { - super(null, specific, LocalizedFormats.ILLEGAL_STATE, args); + this(specific, LocalizedFormats.ILLEGAL_STATE, args); } /**