Author: erans
Date: Fri Mar  2 23:55:58 2012
New Revision: 1296518

URL: http://svn.apache.org/viewvc?rev=1296518&view=rev
Log:
Disabled runtime recomputation of "FastMath" arrays.

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=1296518&r1=1296517&r2=1296518&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
 Fri Mar  2 23:55:58 2012
@@ -101,7 +101,7 @@ public class FastMath {
      * already computed ones provided as literal arrays below.
      * </p>
      */
-    private static /* final */ boolean RECOMPUTE_TABLES_AT_RUNTIME = false;
+    private static final boolean RECOMPUTE_TABLES_AT_RUNTIME = false;
 
     /** log(2) (high bits). */
     private static final double LN_2_A = 0.693147063255310059;


Reply via email to