mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-10299 Fix CjkBreakEngine fWordSet to include 30FC,FF70 (ICU4J)
X-SVN-Rev: 34125
This commit is contained in:
parent
ca03cd866d
commit
4431fc1f14
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2012, International Business Machines Corporation and *
|
||||
* Copyright (C) 2012-2013, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -46,7 +46,8 @@ class CjkBreakEngine implements LanguageBreakEngine {
|
|||
fWordSet.addAll(fHanWordSet);
|
||||
fWordSet.addAll(fKatakanaWordSet);
|
||||
fWordSet.addAll(fHiraganaWordSet);
|
||||
fWordSet.add("\\uff70\\u30fc");
|
||||
fWordSet.add(0xFF70); // HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK
|
||||
fWordSet.add(0x30FC); // KATAKANA-HIRAGANA PROLONGED SOUND MARK
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue