ICU-89 remove ASCII constant (OS390)

X-SVN-Rev: 2196
This commit is contained in:
Alan Liu 2000-08-11 17:50:05 +00:00
parent 564208bca3
commit eb20965ff6

View file

@ -254,7 +254,7 @@ UBool NormalizerConformanceTest::hexsplit(const UnicodeString& s, UChar delimite
// Our field is from pos..delim-1.
buf.remove();
while (pos < delim) {
if (s.charAt(pos) == ' ') {
if (s.charAt(pos) == 0x0020/*' '*/) {
++pos;
} else if (pos+4 > delim) {
errln((UnicodeString)"Premature eol in " + s);