OSDN Git Service

Fix javadoc typo in SparseArray.
authorNewton Allen <newt@google.com>
Thu, 21 Nov 2013 21:27:10 +0000 (13:27 -0800)
committerNewton Allen <newt@google.com>
Thu, 21 Nov 2013 23:12:32 +0000 (23:12 +0000)
Change-Id: Ie69b2cf96dae95b6ebe7b7797d3755749aec9f35
(cherry picked from commit ebb47950f21d3c41955a591000dfb1f195e746fe)

core/java/android/util/LongSparseArray.java
core/java/android/util/LongSparseLongArray.java
core/java/android/util/SparseArray.java
core/java/android/util/SparseBooleanArray.java
core/java/android/util/SparseIntArray.java
core/java/android/util/SparseLongArray.java

index d6e116f..dab853a 100644 (file)
@@ -44,7 +44,7 @@ import com.android.internal.util.ArrayUtils;
  * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
  * <code>keyAt(int)</code> 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 <code>valueAt(int)<code>.</p>
+ * order in the case of <code>valueAt(int)</code>.</p>
  */
 public class LongSparseArray<E> implements Cloneable {
     private static final Object DELETED = new Object();
index 87d868b..6654899 100644 (file)
@@ -39,7 +39,7 @@ import java.util.Arrays;
  * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
  * <code>keyAt(int)</code> 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 <code>valueAt(int)<code>.</p>
+ * order in the case of <code>valueAt(int)</code>.</p>
  *
  * @hide
  */
index 6e168a8..46d9d45 100644 (file)
@@ -44,7 +44,7 @@ import com.android.internal.util.ArrayUtils;
  * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
  * <code>keyAt(int)</code> 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 <code>valueAt(int)<code>.</p>
+ * order in the case of <code>valueAt(int)</code>.</p>
  */
 public class SparseArray<E> implements Cloneable {
     private static final Object DELETED = new Object();
index 68487e3..905dcb0 100644 (file)
@@ -38,7 +38,7 @@ import com.android.internal.util.ArrayUtils;
  * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
  * <code>keyAt(int)</code> 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 <code>valueAt(int)<code>.</p>
+ * order in the case of <code>valueAt(int)</code>.</p>
  */
 public class SparseBooleanArray implements Cloneable {
     /**
index 0835cb0..4f5ca07 100644 (file)
@@ -37,7 +37,7 @@ import com.android.internal.util.ArrayUtils;
  * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
  * <code>keyAt(int)</code> 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 <code>valueAt(int)<code>.</p>
+ * order in the case of <code>valueAt(int)</code>.</p>
  */
 public class SparseIntArray implements Cloneable {
     private int[] mKeys;
index 62c1c0d..39fc8a3 100644 (file)
@@ -37,7 +37,7 @@ import com.android.internal.util.ArrayUtils;
  * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
  * <code>keyAt(int)</code> 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 <code>valueAt(int)<code>.</p>
+ * order in the case of <code>valueAt(int)</code>.</p>
  */
 public class SparseLongArray implements Cloneable {
     private int[] mKeys;