ICU-6248 Fix Character => UCharacter

X-SVN-Rev: 24417
This commit is contained in:
Mark Davis 2008-07-28 09:24:58 +00:00
parent 52626f8c34
commit b0a759f3b9

View File

@ -223,8 +223,8 @@ class TransliteratorParser {
int i = start;
while (i < limit) {
char c = text.charAt(i);
if ((i==start && !Character.isUnicodeIdentifierStart(c)) ||
!Character.isUnicodeIdentifierPart(c)) {
if ((i==start && !UCharacter.isUnicodeIdentifierStart(c)) ||
!UCharacter.isUnicodeIdentifierPart(c)) {
break;
}
++i;