Removed trailing spaces.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1154843 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-08-08 05:21:34 +00:00
parent 5a2d63e2c3
commit 2f2bb7783c
2 changed files with 5 additions and 5 deletions

View File

@ -109,11 +109,11 @@ public class EmpiricalDistributionImpl implements Serializable, EmpiricalDistrib
public EmpiricalDistributionImpl(int binCount) {
this(binCount, null);
}
/**
* Creates a new EmpiricalDistribution with the specified bin count using the
* provided {@link RandomGenerator} as the source of random data.
*
*
* @param binCount number of bins
* @param generator random data generator (may be null, resulting in default JDK generator)
* @since 3.0
@ -497,10 +497,10 @@ public class EmpiricalDistributionImpl implements Serializable, EmpiricalDistrib
public boolean isLoaded() {
return loaded;
}
/**
* Reseeds the random number generator used by {@link #getNextValue()}.
*
*
* @param seed random generator seed
* @since 3.0
*/

View File

@ -167,7 +167,7 @@ public class RandomDataImpl implements RandomData, Serializable {
* Construct a RandomDataImpl using the supplied {@link RandomGenerator} as
* the source of (non-secure) random data.
*
* @param rand the source of (non-secure) random data
* @param rand the source of (non-secure) random data
* (may be null, resulting in default JDK-supplied generator)
* @since 1.1
*/