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

Commit 23d50f5d authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

More misc `android.util` on Ravenwood.

Bring along some general utils along with tests to confirm their
behavior is consistent between devices and Ravenwood.

Bug: 324417456
Test: atest FrameworksCoreTestsRavenwood
Change-Id: I9a7b56d157678014bc458847cccd98ea48994d97
parent e1841f84
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ package android.util;
 * @deprecated Use {@link java.lang.Math} instead.
 */
@Deprecated
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public class FloatMath {

    /** Prevents instantiation. */
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ import android.os.Build;
import java.io.Writer;

/** @hide */
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public class LogWriter extends Writer {
    private final int mPriority;
    private final String mTag;
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ package android.util;
 * @deprecated This class will be removed from a future version of the Android API.
 */
@Deprecated
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public final class MutableInt {
    public int value;

+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ package android.util;
 * @deprecated This class will be removed from a future version of the Android API.
 */
@Deprecated
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public final class MutableLong {
    public long value;

+1 −0
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ import android.compat.annotation.UnsupportedAppUsage;
 *
 * @hide
 */
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public final class Pools {

    /**
Loading