fixed minor error in getImplicitPrimary

X-SVN-Rev: 8780
This commit is contained in:
Mark Davis 2002-06-04 19:01:51 +00:00
parent 2e3d3a3587
commit 5dbd4ef6da

View file

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/text/UCA/WriteCollationData.java,v $
* $Date: 2002/06/04 01:58:55 $
* $Revision: 1.15 $
* $Date: 2002/06/04 19:01:51 $
* $Revision: 1.16 $
*
*******************************************************************************
*/
@ -2462,12 +2462,10 @@ F900..FAFF; CJK Compatibility Ideographs
if (DEBUG) System.out.println("Incoming: " + Utility.hex(cp));
if (!UCA.isCJK(cp) && !UCA.isCJK_AB(cp)) cp += 0x10FFFF; // space everything else after CJK
if (DEBUG) System.out.println("Remapped: " + Utility.hex(cp));
cp = swapCJK(cp);
else cp = swapCJK(cp);
if (DEBUG) System.out.println("CJK swapped: " + Utility.hex(cp));
// we now have a range of numbers from 0 to 21FFFF.
int last0 = cp - IMPLICIT_4BYTE_BOUNDARY;