ICU-12186 Changed SimpleDateFormat#matchDayPeriodString from @internal protected to private, so it won't show up in the API reference doc.

X-SVN-Rev: 38505
This commit is contained in:
Yoshito Umaoka 2016-03-08 18:24:17 +00:00
parent 8ebfaedce1
commit f486f67188

View file

@ -2983,11 +2983,8 @@ public class SimpleDateFormat extends DateFormat {
/**
* Similar to matchQuarterString but customized for day periods.
* @internal
* @deprecated This API is ICU internal only.
*/
@Deprecated
protected int matchDayPeriodString(String text, int start, String[] data, int dataLength,
private int matchDayPeriodString(String text, int start, String[] data, int dataLength,
Output<DayPeriodRules.DayPeriod> dayPeriod)
{
int bestMatchLength = 0, bestMatch = -1;