mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-6952 Removed the code mangler tags
X-SVN-Rev: 26117
This commit is contained in:
parent
3531c28ea0
commit
15d88addbf
1 changed files with 6 additions and 10 deletions
|
@ -1,4 +1,3 @@
|
|||
//##header
|
||||
/*
|
||||
**********************************************************************
|
||||
* Copyright (c) 2002-2009, International Business Machines *
|
||||
|
@ -693,14 +692,11 @@ public class NormalizerPerformanceTest extends PerfTest {
|
|||
*/
|
||||
|
||||
void normalizerTest(String line, boolean compose) {
|
||||
//#if defined(J2SE15)
|
||||
//## sun.text.Normalizer.normalize(line, compose
|
||||
//## ? sun.text.Normalizer.COMPOSE
|
||||
//## : sun.text.Normalizer.DECOMP, 0);
|
||||
//#else
|
||||
java.text.Normalizer.normalize(line, compose
|
||||
? java.text.Normalizer.Form.NFC
|
||||
: java.text.Normalizer.Form.NFD);
|
||||
//#endif
|
||||
// sun.text.Normalizer.normalize(line, compose
|
||||
// ? sun.text.Normalizer.COMPOSE
|
||||
// : sun.text.Normalizer.DECOMP, 0);
|
||||
java.text.Normalizer.normalize(line, compose
|
||||
? java.text.Normalizer.Form.NFC
|
||||
: java.text.Normalizer.Form.NFD);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue