ICU-22856 Fix ICUCurrencyDisplayInfoProvider.fetchUnitPatterns() so that it doesn't skip inheriting patterns

from root.
This commit is contained in:
Rich Gillam 2024-09-13 15:48:18 -07:00 committed by Rich Gillam
parent 688957e94e
commit ee7cc23cd3
2 changed files with 2 additions and 4 deletions

View file

@ -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"));

View file

@ -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;