From 2802965888566244d8642ba32775b7b2a3cec655 Mon Sep 17 00:00:00 2001 From: Newton Allen Date: Thu, 21 Nov 2013 13:27:10 -0800 Subject: [PATCH] Fix javadoc typo in SparseArray. Change-Id: Ie69b2cf96dae95b6ebe7b7797d3755749aec9f35 (cherry picked from commit ebb47950f21d3c41955a591000dfb1f195e746fe) --- core/java/android/util/LongSparseArray.java | 2 +- core/java/android/util/LongSparseLongArray.java | 2 +- core/java/android/util/SparseArray.java | 2 +- core/java/android/util/SparseBooleanArray.java | 2 +- core/java/android/util/SparseIntArray.java | 2 +- core/java/android/util/SparseLongArray.java | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/java/android/util/LongSparseArray.java b/core/java/android/util/LongSparseArray.java index d6e116f21e3f..dab853a7fe27 100644 --- a/core/java/android/util/LongSparseArray.java +++ b/core/java/android/util/LongSparseArray.java @@ -44,7 +44,7 @@ import com.android.internal.util.ArrayUtils; * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using * keyAt(int) with ascending values of the index will return the * keys in ascending order, or the values corresponding to the keys in ascending - * order in the case of valueAt(int).

+ * order in the case of valueAt(int).

*/ public class LongSparseArray implements Cloneable { private static final Object DELETED = new Object(); diff --git a/core/java/android/util/LongSparseLongArray.java b/core/java/android/util/LongSparseLongArray.java index 87d868b02b44..66548997ea73 100644 --- a/core/java/android/util/LongSparseLongArray.java +++ b/core/java/android/util/LongSparseLongArray.java @@ -39,7 +39,7 @@ import java.util.Arrays; * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using * keyAt(int) with ascending values of the index will return the * keys in ascending order, or the values corresponding to the keys in ascending - * order in the case of valueAt(int).

+ * order in the case of valueAt(int).

* * @hide */ diff --git a/core/java/android/util/SparseArray.java b/core/java/android/util/SparseArray.java index 6e168a8b4ccd..46d9d451c6fa 100644 --- a/core/java/android/util/SparseArray.java +++ b/core/java/android/util/SparseArray.java @@ -44,7 +44,7 @@ import com.android.internal.util.ArrayUtils; * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using * keyAt(int) with ascending values of the index will return the * keys in ascending order, or the values corresponding to the keys in ascending - * order in the case of valueAt(int).

+ * order in the case of valueAt(int).

*/ public class SparseArray implements Cloneable { private static final Object DELETED = new Object(); diff --git a/core/java/android/util/SparseBooleanArray.java b/core/java/android/util/SparseBooleanArray.java index 68487e391710..905dcb018b96 100644 --- a/core/java/android/util/SparseBooleanArray.java +++ b/core/java/android/util/SparseBooleanArray.java @@ -38,7 +38,7 @@ import com.android.internal.util.ArrayUtils; * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using * keyAt(int) with ascending values of the index will return the * keys in ascending order, or the values corresponding to the keys in ascending - * order in the case of valueAt(int).

+ * order in the case of valueAt(int).

*/ public class SparseBooleanArray implements Cloneable { /** diff --git a/core/java/android/util/SparseIntArray.java b/core/java/android/util/SparseIntArray.java index 0835cb02e032..4f5ca078d1e4 100644 --- a/core/java/android/util/SparseIntArray.java +++ b/core/java/android/util/SparseIntArray.java @@ -37,7 +37,7 @@ import com.android.internal.util.ArrayUtils; * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using * keyAt(int) with ascending values of the index will return the * keys in ascending order, or the values corresponding to the keys in ascending - * order in the case of valueAt(int).

+ * order in the case of valueAt(int).

*/ public class SparseIntArray implements Cloneable { private int[] mKeys; diff --git a/core/java/android/util/SparseLongArray.java b/core/java/android/util/SparseLongArray.java index 62c1c0d9b6fa..39fc8a37cc30 100644 --- a/core/java/android/util/SparseLongArray.java +++ b/core/java/android/util/SparseLongArray.java @@ -37,7 +37,7 @@ import com.android.internal.util.ArrayUtils; * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using * keyAt(int) with ascending values of the index will return the * keys in ascending order, or the values corresponding to the keys in ascending - * order in the case of valueAt(int).

+ * order in the case of valueAt(int).

*/ public class SparseLongArray implements Cloneable { private int[] mKeys; -- 2.11.0