mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-12067 withdraw getter & setter for TIME_SEPARATOR date/time field
X-SVN-Rev: 38450
This commit is contained in:
parent
e596b9258a
commit
cbf6464079
1 changed files with 6 additions and 4 deletions
|
@ -1293,9 +1293,10 @@ public class DateFormatSymbols implements Serializable, Cloneable {
|
|||
/**
|
||||
* Returns the time separator string. For example: ":".
|
||||
* @return the time separator string.
|
||||
* @draft ICU 55
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
* @internal
|
||||
* @deprecated This API is ICU internal only.
|
||||
*/
|
||||
@Deprecated
|
||||
public String getTimeSeparatorString() {
|
||||
return timeSeparator;
|
||||
}
|
||||
|
@ -1303,9 +1304,10 @@ public class DateFormatSymbols implements Serializable, Cloneable {
|
|||
/**
|
||||
* Sets the time separator string. For example: ":".
|
||||
* @param newTimeSeparator the new time separator string.
|
||||
* @draft ICU 55
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
* @internal
|
||||
* @deprecated This API is ICU internal only.
|
||||
*/
|
||||
@Deprecated
|
||||
public void setTimeSeparatorString(String newTimeSeparator) {
|
||||
timeSeparator = newTimeSeparator;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue