ICU-3280 correct docs

X-SVN-Rev: 13240
This commit is contained in:
Alan Liu 2003-09-29 23:18:24 +00:00
parent 85665276a9
commit 03e8319ee8

View file

@ -161,7 +161,7 @@ public class RuleCharacterIterator {
if (c == '\\' && (options & PARSE_ESCAPES) != 0) {
c = Utility.unescapeAt(this);
isEscaped = true; // unescapeAt() sets isEscaped to false
isEscaped = true;
if (c < 0) {
throw new IllegalArgumentException("Invalid escape");
}