mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-4450 fix a bug in eras lookup
X-SVN-Rev: 17773
This commit is contained in:
parent
dd3a86df45
commit
b3a60a35b0
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ public class CalendarData {
|
|||
return get(key, subKey).getStringArray();
|
||||
}
|
||||
public String[] getEras(String subkey){
|
||||
UResourceBundle bundle = get("eras");
|
||||
return bundle.getStringArray(subkey);
|
||||
ICUResourceBundle bundle = get("eras/"+subkey);
|
||||
return bundle.getStringArray();
|
||||
}
|
||||
public ULocale getULocale() {
|
||||
return fBundle.getULocale();
|
||||
|
|
Loading…
Add table
Reference in a new issue