mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22960 Use ICUBinary.getRequiredData()
to load BreakIterator data
This commit is contained in:
parent
d6f8a14f8c
commit
5ceee1660f
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ final class BreakIteratorFactory extends BreakIterator.BreakIteratorServiceShim
|
|||
String typeKey = typeKeyExt.isEmpty() ? KIND_NAMES[kind] : KIND_NAMES[kind] + typeKeyExt;
|
||||
brkfname = rb.getStringWithFallback("boundaries/" + typeKey);
|
||||
String rulesFileName = ICUData.ICU_BRKITR_NAME+ '/' + brkfname;
|
||||
bytes = ICUBinary.getData(rulesFileName);
|
||||
bytes = ICUBinary.getRequiredData(rulesFileName);
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new MissingResourceException(e.toString(),"","");
|
||||
|
|
Loading…
Add table
Reference in a new issue