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:
parent
0c7099ab35
commit
448759e46e
|
@ -99,7 +99,7 @@ public class MathException extends Exception {
|
||||||
public MathException() {
|
public MathException() {
|
||||||
super();
|
super();
|
||||||
this.pattern = null;
|
this.pattern = null;
|
||||||
this.arguments = null;
|
this.arguments = new Object[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue