ICU-6248 Fix Character => UCharacter
X-SVN-Rev: 24417
This commit is contained in:
parent
52626f8c34
commit
b0a759f3b9
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user