Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c22657f8 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am 3f5778c8: Merge "Fix incorrect FloatMath documentation."

* commit '3f5778c8':
  Fix incorrect FloatMath documentation.
parents f7497c9e 3f5778c8
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -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}.
 *
 * <p>On one platform, {@code FloatMath.sqrt(100)} executes in one third of the
 * time required by {@code java.lang.Math.sqrt(100)}.</p>
 * 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 {