Removed IEEERemainder for GWT compatibility.

This commit is contained in:
Michael Bayne
2011-07-12 07:27:02 -07:00
parent e90f70a0f6
commit d3b91156b0
-10
View File
@@ -235,16 +235,6 @@ public class FloatMath
return (v > 0f) ? ((iv == v || iv == Integer.MAX_VALUE) ? iv : (iv + 1)) : iv;
}
/**
* Returns the remainder when f1 is divided by f2.
*
* @see Math#IEEEremainder
*/
public static float IEEEremainder (float f1, float f2)
{
return (float)Math.IEEEremainder(f1, f2);
}
/**
* Clamps a value to the range [lower, upper].
*/