From d3b91156b08e34b46c03b8feb45c4b1d7545a99f Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 12 Jul 2011 07:27:02 -0700 Subject: [PATCH] Removed IEEERemainder for GWT compatibility. --- src/main/java/pythagoras/f/FloatMath.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/main/java/pythagoras/f/FloatMath.java b/src/main/java/pythagoras/f/FloatMath.java index e6bae99..fd27f06 100644 --- a/src/main/java/pythagoras/f/FloatMath.java +++ b/src/main/java/pythagoras/f/FloatMath.java @@ -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]. */