ICU-1681 do not test for U+0020 it is handled already.

X-SVN-Rev: 7671
This commit is contained in:
Yves Arrouye 2002-02-14 20:39:27 +00:00
parent 4f4037a4b2
commit 96eda2afe7

View File

@ -163,8 +163,7 @@ void NameUnicodeTransliterator::handleTransliterate(Replaceable& text, UTransPos
(c >= (UChar)0x0041 && c <= (UChar)0x005A) ||
(c >= (UChar)0x0061 && c <= (UChar)0x007A) ||
(c >= (UChar)0x0030 && c <= (UChar)0x0039) ||
c == (UChar)0x003C || c == (UChar)0x003E ||
c == 0x0020) {
c == (UChar)0x003C || c == (UChar)0x003E) {
buf[ibuf++] = (char) c;
// If we go a bit past the longest possible name then abort
if (ibuf == (LONGEST_NAME + 4)) {