Make private constant final

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@902928 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-01-25 19:03:26 +00:00
parent 517f665a54
commit 4487658a3a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ import org.apache.commons.math.util.MathUtils;
final class SaddlePointExpansion {
/** 1/2 * log(2 π). */
private static double HALF_LOG_2_PI = 0.5 * Math.log(MathUtils.TWO_PI);
private static final double HALF_LOG_2_PI = 0.5 * Math.log(MathUtils.TWO_PI);
/** exact Stirling expansion error for certain values. */
private static final double[] EXACT_STIRLING_ERRORS = { 0.0, /* 0.0 */