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

Commit c40d1153 authored by Scott Kennedy's avatar Scott Kennedy
Browse files

Unhide SparseLongArray

Because it's useful.

Change-Id: I6c71a49eed2c0c366e8afa874ebbc48cfe816a90
parent 34583fcb
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 {