mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-2785 Don't strip white space anymore. Just strip the new lines.
X-SVN-Rev: 11544
This commit is contained in:
parent
1a018c69be
commit
7bf253f27f
1 changed files with 1 additions and 1 deletions
|
@ -716,7 +716,7 @@ UnicodeString RBBIRuleScanner::stripRules(const UnicodeString &rules) {
|
|||
ch = rules[idx++];
|
||||
}
|
||||
}
|
||||
if (!u_isWhitespace(ch)) {
|
||||
if (!u_isISOControl(ch)) {
|
||||
strippedRules.append(ch);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue