ICU-1007 remove switch between old and new normalization

X-SVN-Rev: 5490
This commit is contained in:
Markus Scherer 2001-08-17 00:21:54 +00:00
parent 6eb5998fc1
commit 9ef63135ee
2 changed files with 0 additions and 14 deletions

View file

@ -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);

View file

@ -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;