ICU-1930 removed UCOL_ON_WITHOUT_HANGUL normalization option. It wasn't used while functioning and it's not used in normalization any more. The only reference was in the attribute setter.

X-SVN-Rev: 9370
This commit is contained in:
Vladimir Weinstein 2002-07-26 18:14:11 +00:00
parent 4236f298d1
commit c42b31a645

View file

@ -4931,9 +4931,6 @@ ucol_setAttribute(UCollator *coll, UColAttribute attr, UColAttributeValue value,
} else if (value == UCOL_OFF) {
coll->normalizationMode = UCOL_OFF;
coll->normalizationModeisDefault = FALSE;
} else if (value == UCOL_ON_WITHOUT_HANGUL) {
coll->normalizationMode = UCOL_ON_WITHOUT_HANGUL ;
coll->normalizationModeisDefault = FALSE;
} else if (value == UCOL_DEFAULT) {
coll->normalizationModeisDefault = TRUE;
coll->normalizationMode = coll->options->normalizationMode;