mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8210633: Cannot parse JapaneseDate string with DateTimeFormatterBuilder Mapped-values
Reviewed-by: scolebourne, rriggs
This commit is contained in:
parent
9d95755584
commit
ff3f48d69f
2 changed files with 24 additions and 7 deletions
|
@ -802,7 +802,13 @@ public final class DateTimeFormatterBuilder {
|
|||
return store.getText(value, style);
|
||||
}
|
||||
@Override
|
||||
public Iterator<Entry<String, Long>> getTextIterator(TemporalField field, TextStyle style, Locale locale) {
|
||||
public Iterator<Entry<String, Long>> getTextIterator(Chronology chrono,
|
||||
TemporalField field, TextStyle style, Locale locale) {
|
||||
return store.getTextIterator(style);
|
||||
}
|
||||
@Override
|
||||
public Iterator<Entry<String, Long>> getTextIterator(TemporalField field,
|
||||
TextStyle style, Locale locale) {
|
||||
return store.getTextIterator(style);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue