From 96eda2afe70e09f88271c4f308ee84a7004625a1 Mon Sep 17 00:00:00 2001 From: Yves Arrouye Date: Thu, 14 Feb 2002 20:39:27 +0000 Subject: [PATCH] ICU-1681 do not test for U+0020 it is handled already. X-SVN-Rev: 7671 --- icu4c/source/i18n/name2uni.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/icu4c/source/i18n/name2uni.cpp b/icu4c/source/i18n/name2uni.cpp index a005271d8b..3e80746863 100644 --- a/icu4c/source/i18n/name2uni.cpp +++ b/icu4c/source/i18n/name2uni.cpp @@ -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)) {