summaryrefslogtreecommitdiffstats
path: root/core/java/android/util
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-10-18 20:53:38 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-18 20:53:38 +0000
commit5fc9f9c293ecdcb98b243fcabca7d82f0cef078f (patch)
tree73dd66fc7692fe55058655a7aa34e47b84beec40 /core/java/android/util
parent377f78f6b58f68e930a62cf35a734ed0eadc7d98 (diff)
parent84e6d466edc2aba711f90431a1cd209d11c0e70d (diff)
downloadframeworks_base-5fc9f9c293ecdcb98b243fcabca7d82f0cef078f.zip
frameworks_base-5fc9f9c293ecdcb98b243fcabca7d82f0cef078f.tar.gz
frameworks_base-5fc9f9c293ecdcb98b243fcabca7d82f0cef078f.tar.bz2
am 84e6d466: am 4cd671e4: Merge "Revert "Replacing FloatMath native implementation with calls to Math""
* commit '84e6d466edc2aba711f90431a1cd209d11c0e70d': Revert "Replacing FloatMath native implementation with calls to Math"
Diffstat (limited to 'core/java/android/util')
-rw-r--r--core/java/android/util/FloatMath.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/core/java/android/util/FloatMath.java b/core/java/android/util/FloatMath.java
index d33ca0d..0ffd5bd 100644
--- a/core/java/android/util/FloatMath.java
+++ b/core/java/android/util/FloatMath.java
@@ -17,13 +17,10 @@
package android.util;
/**
- * Math routines similar to those found in {@link java.lang.Math}.
- *
- * <p>Historically these methods were faster than the equivalent double-based
- * {@link java.lang.Math} methods. On versions of Android with a JIT they
- * became slower and have since been re-implemented to wrap calls to
- * {@link java.lang.Math}. {@link java.lang.Math} should be used in
- * preference.
+ * 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 {