From b5c09b5487699bfde612f4833641cc57aaa4a0c8 Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Wed, 8 Feb 2017 09:14:46 +0000 Subject: [PATCH] Fix problem with JavaDoc Test: make checkbuild Change-Id: Ia321e0a57ff63aa62adee16d611c063a22807176 --- core/java/com/android/internal/util/MessageUtils.java | 6 +++--- 1 file 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 184245ef538dc..e733c30ae84a0 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 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 findMessageNames(Class[] classNames) {