ICU-2785 Don't strip white space anymore. Just strip the new lines.

X-SVN-Rev: 11544
This commit is contained in:
George Rhoten 2003-04-14 23:44:31 +00:00
parent 1a018c69be
commit 7bf253f27f

View file

@ -716,7 +716,7 @@ UnicodeString RBBIRuleScanner::stripRules(const UnicodeString &rules) {
ch = rules[idx++];
}
}
if (!u_isWhitespace(ch)) {
if (!u_isISOControl(ch)) {
strippedRules.append(ch);
}
}