fixed a forgotten possible NPE

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@712178 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-11-07 16:05:50 +00:00
parent 0c7099ab35
commit 448759e46e
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public class MathException extends Exception {
public MathException() {
super();
this.pattern = null;
this.arguments = null;
this.arguments = new Object[0];
}
/**