Author: celestin Date: Wed Nov 28 05:48:50 2012 New Revision: 1414535 URL: http://svn.apache.org/viewvc?rev=1414535&view=rev Log: Checkstyle.
Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java?rev=1414535&r1=1414534&r2=1414535&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java Wed Nov 28 05:48:50 2012 @@ -78,9 +78,6 @@ import java.io.PrintStream; * @since 2.2 */ public class FastMath { - /** StrictMath.log(Double.MAX_VALUE): {@value} */ - private static final double LOG_MAX_VALUE = StrictMath.log(Double.MAX_VALUE); - /** Archimede's constant PI, ratio of circle circumference to diameter. */ public static final double PI = 105414357.0 / 33554432.0 + 1.984187159361080883e-9; @@ -96,6 +93,9 @@ public class FastMath { /** Exponential fractions table length. */ static final int EXP_FRAC_TABLE_LEN = 1025; // 0, 1/1024, ... 1024/1024 + /** StrictMath.log(Double.MAX_VALUE): {@value} */ + private static final double LOG_MAX_VALUE = StrictMath.log(Double.MAX_VALUE); + /** Indicator for tables initialization. * <p> * This compile-time constant should be set to true only if one explicitly