From 9ef63135eeec07dcccec7de49db2252bf8274d60 Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Fri, 17 Aug 2001 00:21:54 +0000 Subject: [PATCH] ICU-1007 remove switch between old and new normalization X-SVN-Rev: 5490 --- icu4c/source/test/cintltst/cintltst.c | 7 ------- icu4c/source/test/intltest/intltest.cpp | 7 ------- 2 files changed, 14 deletions(-) diff --git a/icu4c/source/test/cintltst/cintltst.c b/icu4c/source/test/cintltst/cintltst.c index 48bde940450..a0025a09f46 100644 --- a/icu4c/source/test/cintltst/cintltst.c +++ b/icu4c/source/test/cintltst/cintltst.c @@ -101,13 +101,6 @@ int main(int argc, const char* const argv[]) fprintf(stdout, "Default locale for this run is %s\n", uloc_getDefault()); - /* ### TODO: remove when the new normalization implementation is finished */ - if(argc>1 && argv[1][0]=='N') { - unorm_setNewImplementation((UBool)(argv[1][1]=='+')); - ++argv; - --argc; - } - root = NULL; addAllTests(&root); nerrors = processArgs(root, argc, argv); diff --git a/icu4c/source/test/intltest/intltest.cpp b/icu4c/source/test/intltest/intltest.cpp index 7548ff790ce..4c136483216 100644 --- a/icu4c/source/test/intltest/intltest.cpp +++ b/icu4c/source/test/intltest/intltest.cpp @@ -1023,13 +1023,6 @@ main(int argc, char* argv[]) // If user didn't set ICU_DATA, attempt to generate one. IntlTest::setICU_DATA(); - /* ### TODO: remove when the new normalization implementation is finished */ - if(argc>1 && argv[1][0]=='N') { - unorm_setNewImplementation((UBool)(argv[1][1]=='+')); - ++argv; - --argc; - } - for (int i = 1; i < argc; ++i) { if (argv[i][0] == '-') { const char* str = argv[i] + 1;