git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1462020 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2013-03-28 10:24:45 +00:00
parent 9aabf587ca
commit 2ac2716132
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ public class UniformRealDistribution extends AbstractRealDistribution {
*/
public UniformRealDistribution(double lower, double upper)
throws NumberIsTooLargeException {
this(new Well19937c(), lower, upper);
this(new Well19937c(), lower, upper);
}
/**
@ -79,7 +79,7 @@ public class UniformRealDistribution extends AbstractRealDistribution {
@Deprecated
public UniformRealDistribution(double lower, double upper, double inverseCumAccuracy)
throws NumberIsTooLargeException {
this(new Well19937c(), lower, upper);
this(new Well19937c(), lower, upper);
}
/**