From f6f9d3762f807da23fd823648747fcb205683c4a Mon Sep 17 00:00:00 2001 From: Peter Edberg Date: Tue, 3 Sep 2013 05:14:19 +0000 Subject: [PATCH] ICU-9960 The private/@internal versions of matchString,subParse added in r31186 should be marked as such X-SVN-Rev: 34166 --- .../core/src/com/ibm/icu/text/SimpleDateFormat.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/SimpleDateFormat.java b/icu4j/main/classes/core/src/com/ibm/icu/text/SimpleDateFormat.java index a6a86d63b74..fa556f65c5d 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/SimpleDateFormat.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/SimpleDateFormat.java @@ -2512,10 +2512,10 @@ public class SimpleDateFormat extends DateFormat { * number indicating matching failure, otherwise. As a side effect, * sets the cal field field to the index * of the best match, if matching succeeded. - * @draft ICU 49 - * @provisional This API might change or be removed in a future release. + * @internal + * @deprecated This API is ICU internal only. */ - protected int matchString(String text, int start, int field, String[] data, String monthPattern, Calendar cal) + private int matchString(String text, int start, int field, String[] data, String monthPattern, Calendar cal) { int i = 0; int count = data.length; @@ -2675,10 +2675,10 @@ public class SimpleDateFormat extends DateFormat { * number indicating matching failure, otherwise. As a side effect, * set the appropriate field of cal with the parsed * value. - * @draft ICU 49 - * @provisional This API might change or be removed in a future release. + * @internal + * @deprecated This API is ICU internal only. */ - protected int subParse(String text, int start, char ch, int count, + private int subParse(String text, int start, char ch, int count, boolean obeyCount, boolean allowNegative, boolean[] ambiguousYear, Calendar cal, MessageFormat numericLeapMonthFormatter) { -- 2.40.0