You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/01/24 23:34:35 UTC

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

Author: sebb
Date: Mon Jan 24 22:34:35 2011
New Revision: 1063038

URL: http://svn.apache.org/viewvc?rev=1063038&view=rev
Log:
Trailing spaces

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

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java?rev=1063038&r1=1063037&r2=1063038&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java Mon Jan 24 22:34:35 2011
@@ -193,7 +193,7 @@ public class FastMath {
      * Equivalent to 2^30.
      */
     private static final long HEX_40000000 = 0x40000000L; // 1073741824L
-    
+
     /** Mask used to clear low order 30 bits */
     private static final long MASK_30BITS = -1L - (HEX_40000000 -1); // 0xFFFFFFFFC0000000L;
 
@@ -251,11 +251,11 @@ public class FastMath {
     }
 
     // Generic helper methods
-    
+
     /**
      * Get the high order bits from the mantissa.
      * Equivalent to adding and subtracting HEX_40000 but also works for very large numbers
-     * 
+     *
      * @param d the value to split
      * @return the high order part of the mantissa
      */
@@ -3983,11 +3983,11 @@ public class FastMath {
     public static double IEEEremainder(double dividend, double divisor) {
         return StrictMath.IEEEremainder(dividend, divisor); // TODO provide our own implementation
     }
-    
+
     /**
      * Returns the first argument with the sign of the second argument.
      * A NaN {@code sign} argument is treated as positive.
-     * 
+     *
      * @param magnitude the value to return
      * @param sign the sign for the returned value
      * @return the magnitude with the same sign as the {@code sign} argument
@@ -4004,7 +4004,7 @@ public class FastMath {
     /**
      * Returns the first argument with the sign of the second argument.
      * A NaN {@code sign} argument is treated as positive.
-     * 
+     *
      * @param magnitude the value to return
      * @param sign the sign for the returned value
      * @return the magnitude with the same sign as the {@code sign} argument