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

Commit b23858c0 authored by Scott Kennedy's avatar Scott Kennedy Committed by Android (Google) Code Review
Browse files

Merge "Unhide SparseLongArray"

parents 425c3da6 c40d1153
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -23497,6 +23497,24 @@ package android.util {
    method public int valueAt(int);
  }
  public class SparseLongArray implements java.lang.Cloneable {
    ctor public SparseLongArray();
    ctor public SparseLongArray(int);
    method public void append(int, long);
    method public void clear();
    method public android.util.SparseLongArray clone();
    method public void delete(int);
    method public long get(int);
    method public long get(int, long);
    method public int indexOfKey(int);
    method public int indexOfValue(long);
    method public int keyAt(int);
    method public void put(int, long);
    method public void removeAt(int);
    method public int size();
    method public long valueAt(int);
  }
  public class StateSet {
    method public static java.lang.String dump(int[]);
    method public static boolean isWildCard(int[]);
+0 −2
Original line number Diff line number Diff line
@@ -22,8 +22,6 @@ import com.android.internal.util.ArrayUtils;
 * SparseLongArrays map integers to longs.  Unlike a normal array of longs,
 * there can be gaps in the indices.  It is intended to be more efficient
 * than using a HashMap to map Integers to Longs.
 *
 * @hide
 */
public class SparseLongArray implements Cloneable {