You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2011/04/12 20:07:42 UTC

svn commit: r1091526 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java

Author: luc
Date: Tue Apr 12 18:07:42 2011
New Revision: 1091526

URL: http://svn.apache.org/viewvc?rev=1091526&view=rev
Log:
removed obsolete field

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java?rev=1091526&r1=1091525&r2=1091526&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java Tue Apr 12 18:07:42 2011
@@ -75,9 +75,6 @@ public final class MathUtils {
     /** 0.0 cast as a short. */
     private static final short ZS = (short)0;
 
-    /** Gap between NaN and regular numbers. */
-    private static final int NAN_GAP = 4 * 1024 * 1024;
-
     /** Offset to order signed double numbers lexicographically. */
     private static final long SGN_MASK = 0x8000000000000000L;