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

Commit 554e294a authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge changes from topic "dec5" into main

* changes:
  Support more utils under Ravenwood.
  Trivial test package refactoring.
  Support more internal utils under Ravenwood.
parents e7d0fe03 3e68053d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ package android.util;
 *
 * @hide
 */
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public class DayOfMonthCursor extends MonthDisplayHelper {

    private int mRow;
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ import android.annotation.NonNull;
/**
 * Represents a container that manages {@link Dumpable dumpables}.
 */
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public interface DumpableContainer {

    /**
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ import java.time.format.DateTimeParseException;
 * can be used.
 * @hide
 */
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public class KeyValueListParser {
    private final ArrayMap<String, String> mValues = new ArrayMap<>();
    private final TextUtils.StringSplitter mSplitter;
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ import java.util.NoSuchElementException;
 *
 * @hide
 */
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public class LongArrayQueue {

    private long[] mValues;
+1 −0
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ import com.android.internal.util.Preconditions;
 *
 * @hide
 */
@android.ravenwood.annotation.RavenwoodKeepWholeClass
public class LongSparseLongArray implements Cloneable {
    @UnsupportedAppUsage(maxTargetSdk = 28) // The type isn't even public.
    private long[] mKeys;
Loading