mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-19 11:45:45 +00:00
ICU-8807 Fix constant that can't be changed until U6.1
X-SVN-Rev: 30641
This commit is contained in:
parent
5b237cf6bb
commit
666e129847
1 changed files with 3 additions and 2 deletions
|
@ -44,9 +44,10 @@ public class ImplicitCEGenerator {
|
|||
|
||||
public static final int
|
||||
// 4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;
|
||||
// 9FCB;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;;
|
||||
// 9FCB;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;; // Version 6.0
|
||||
// 9FCC;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;; // Version 6.1
|
||||
CJK_BASE = 0x4E00,
|
||||
CJK_LIMIT = 0x9FCC+1,
|
||||
CJK_LIMIT = 0x9FCB+1,
|
||||
|
||||
CJK_COMPAT_USED_BASE = 0xFA0E,
|
||||
CJK_COMPAT_USED_LIMIT = 0xFA2F+1,
|
||||
|
|
Loading…
Add table
Reference in a new issue