-
-
Notifications
You must be signed in to change notification settings - Fork 768
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ICU4J: Undo change to backup() and make uses of backup() and readCode…
…Point() consistent Fix three locations where `cp = readCodePoint()` was followed by `backup(1)`, in a context where `cp` might be a wide char: `getIdentifier()`: Use `peekChar()` rather than `readCodePoint()` followed by `backup()` (an identifier could be followed by a wide char that is not a name-char) `skipWhitespaces()`: The same change (a whitespace could be followed by a wide char) `getName()`: names can include wide chars The tests are in 4429088
- Loading branch information
1 parent
cb3594b
commit eee547c
Showing
2 changed files
with
31 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters