summaryrefslogtreecommitdiff
path: root/core/java/android/util/SparseIntArray.java
diff options
context:
space:
mode:
authorMathew Inwood <mathewi@google.com>2018-08-15 11:36:01 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-08-15 11:36:01 +0000
commit06f2e6b7c84e272ca899770dd811db4de4e6599b (patch)
treed8e211ab3b45f679cfb2725874ae519db831fe87 /core/java/android/util/SparseIntArray.java
parentfd07385fea8928aceb56dc5418fee3037e4120e6 (diff)
parentb407568c55b5e558a0e45a1011b281acf37a45ff (diff)
Merge "Add @UnsupportedAppUsage annotations"
Diffstat (limited to 'core/java/android/util/SparseIntArray.java')
-rw-r--r--core/java/android/util/SparseIntArray.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/util/SparseIntArray.java b/core/java/android/util/SparseIntArray.java
index 3b832ddd286c..19547534aef5 100644
--- a/core/java/android/util/SparseIntArray.java
+++ b/core/java/android/util/SparseIntArray.java
@@ -21,6 +21,7 @@ import com.android.internal.util.GrowingArrayUtils;
import java.util.Arrays;
+import android.annotation.UnsupportedAppUsage;
import libcore.util.EmptyArray;
/**
@@ -45,8 +46,11 @@ import libcore.util.EmptyArray;
* order in the case of <code>valueAt(int)</code>.</p>
*/
public class SparseIntArray implements Cloneable {
+ @UnsupportedAppUsage
private int[] mKeys;
+ @UnsupportedAppUsage
private int[] mValues;
+ @UnsupportedAppUsage
private int mSize;
/**