mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-1923
rectified bug in testing for ignorables X-SVN-Rev: 9253
This commit is contained in:
parent
b152e7a0fe
commit
f1a5dec3e8
1 changed files with 4 additions and 4 deletions
|
@ -6,8 +6,8 @@
|
|||
*
|
||||
* $Source:
|
||||
* /usr/cvs/icu4j/icu4j/src/com/ibm/icu/text/UCharacterPropertyDB.java $
|
||||
* $Date: 2002/07/08 23:52:14 $
|
||||
* $Revision: 1.10 $
|
||||
* $Date: 2002/07/18 23:27:03 $
|
||||
* $Revision: 1.11 $
|
||||
*
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -534,11 +534,11 @@ public final class UCharacterProperty implements Trie.DataManipulate
|
|||
}
|
||||
|
||||
int additionalproperty = getAdditional(codepoint, 1);
|
||||
if (compareAdditionalType(additionalproperty,
|
||||
if (compareAdditionalType(additionalproperty,
|
||||
OTHER_DEFAULT_IGNORABLE_CODE_POINT_PROPERTY_)) {
|
||||
return true;
|
||||
}
|
||||
if (compareAdditionalType(additionalproperty,
|
||||
if (!compareAdditionalType(additionalproperty,
|
||||
WHITE_SPACE_PROPERTY_)) {
|
||||
int generaltype = getPropType(getProperty(codepoint));
|
||||
if (generaltype == UCharacterCategory.FORMAT
|
||||
|
|
Loading…
Add table
Reference in a new issue