From f732a2f83f43769653f9dc5975faf1d6d0bd19f6 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 26 Feb 2013 09:28:17 -0800 Subject: [PATCH] Fix incorrect FloatMath documentation. Change-Id: I30bbe500e634b73f3456ccc797106ad261fd0ce7 --- core/java/android/util/FloatMath.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/core/java/android/util/FloatMath.java b/core/java/android/util/FloatMath.java index 955622396aac3..0ffd5bd610982 100644 --- a/core/java/android/util/FloatMath.java +++ b/core/java/android/util/FloatMath.java @@ -17,12 +17,10 @@ package android.util; /** - * Math routines similar to those found in {@link java.lang.Math}. Performs - * computations on {@code float} values directly without incurring the overhead - * of conversions to and from {@code double}. - * - *

On one platform, {@code FloatMath.sqrt(100)} executes in one third of the - * time required by {@code java.lang.Math.sqrt(100)}.

+ * Math routines similar to those found in {@link java.lang.Math}. On + * versions of Android with a JIT, these are significantly slower than + * the equivalent {@code Math} functions, which should be used in preference + * to these. */ public class FloatMath {