summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Paul Duffin <paulduffin@google.com> 2017-02-08 11:35:19 +0000
committer android-build-merger <android-build-merger@google.com> 2017-02-08 11:35:19 +0000
commit290274df0d005a88c2d350514afb6ea86f95f1b0 (patch)
tree4e24014956d7cf2eeaf6ec1b1b8a909c6afd9c64
parent1c8845c6b0fa81756f8272fe6660699fd4d08028 (diff)
parent4929aafc1d06261a7a26fd2ba9f49458483ec002 (diff)
Merge "Fix problem with JavaDoc" am: 8f33fcdc4b
am: 4929aafc1d Change-Id: I08c9f20c34a2952105854d107b442884dba220b1
-rw-r--r--core/java/com/android/internal/util/MessageUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/com/android/internal/util/MessageUtils.java b/core/java/com/android/internal/util/MessageUtils.java
index 184245ef538d..e733c30ae84a 100644
--- a/core/java/com/android/internal/util/MessageUtils.java
+++ b/core/java/com/android/internal/util/MessageUtils.java
@@ -42,10 +42,11 @@ public class MessageUtils {
/**
* Finds the names of integer constants. Searches the specified {@code classes}, looking for
- * accessible static integer fields whose names begin with one of the specified {@prefixes}.
+ * accessible static integer fields whose names begin with one of the specified
+ * {@code prefixes}.
*
* @param classes the classes to examine.
- * @prefixes only consider fields names starting with one of these prefixes.
+ * @param prefixes only consider fields names starting with one of these prefixes.
* @return a {@link SparseArray} mapping integer constants to their names.
*/
public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) {
@@ -122,7 +123,6 @@ public class MessageUtils {
* accessible static integer values whose names begin with {@link #DEFAULT_PREFIXES}.
*
* @param classNames the classes to examine.
- * @prefixes only consider fields names starting with one of these prefixes.
* @return a {@link SparseArray} mapping integer constants to their names.
*/
public static SparseArray<String> findMessageNames(Class[] classNames) {