Implementation details should not be "public".

This commit is contained in:
Gilles 2017-05-29 02:32:40 +02:00
parent 4717edc26a
commit d9979fa978
1 changed files with 2 additions and 2 deletions

View File

@ -36,12 +36,12 @@ public class PoissonDistribution extends AbstractIntegerDistribution {
* Default maximum number of iterations for cumulative probability calculations. * Default maximum number of iterations for cumulative probability calculations.
* @since 2.1 * @since 2.1
*/ */
public static final int DEFAULT_MAX_ITERATIONS = 10000000; private static final int DEFAULT_MAX_ITERATIONS = 10000000;
/** /**
* Default convergence criterion. * Default convergence criterion.
* @since 2.1 * @since 2.1
*/ */
public static final double DEFAULT_EPSILON = 1e-12; private static final double DEFAULT_EPSILON = 1e-12;
/** Serializable version identifier. */ /** Serializable version identifier. */
private static final long serialVersionUID = -3349935121172596109L; private static final long serialVersionUID = -3349935121172596109L;
/** Distribution used to compute normal approximation. */ /** Distribution used to compute normal approximation. */