mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-22856 Fix ICUCurrencyDisplayInfoProvider.fetchUnitPatterns() so that it doesn't skip inheriting patterns
from root.
This commit is contained in:
parent
688957e94e
commit
ee7cc23cd3
2 changed files with 2 additions and 4 deletions
|
@ -345,9 +345,7 @@ public class CurrencyTest extends CoreTestFmwk {
|
|||
// known currency, behavior unchanged
|
||||
assertEquals("de_USD_name", "US-Dollar", cdn.getName("USD"));
|
||||
assertEquals("de_USD_symbol", "$", cdn.getSymbol("USD"));
|
||||
if (!logKnownIssue("ICU-22856", "Problem with inheritance for plural rules in currencies")) {
|
||||
assertEquals("de_USD_plural_other", "US-Dollar", cdn.getPluralName("USD", "other"));
|
||||
}
|
||||
assertEquals("de_USD_plural_other", "US-Dollar", cdn.getPluralName("USD", "other"));
|
||||
|
||||
// known currency but unknown plural category
|
||||
assertNull("de_USD_plural_foo", cdn.getPluralName("USD", "foo"));
|
||||
|
|
|
@ -325,7 +325,7 @@ public class ICUCurrencyDisplayInfoProvider implements CurrencyDisplayInfoProvid
|
|||
Map<String, String> result = unitPatternsCache;
|
||||
if (result == null) {
|
||||
result = new HashMap<>();
|
||||
CurrencySink sink = new CurrencySink(!fallback, CurrencySink.EntrypointTable.CURRENCY_UNIT_PATTERNS);
|
||||
CurrencySink sink = new CurrencySink(false, CurrencySink.EntrypointTable.CURRENCY_UNIT_PATTERNS);
|
||||
sink.unitPatterns = result;
|
||||
rb.getAllItemsWithFallback("CurrencyUnitPatterns", sink);
|
||||
unitPatternsCache = result;
|
||||
|
|
Loading…
Add table
Reference in a new issue