mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-2235 option reserve array size changed
X-SVN-Rev: 13662
This commit is contained in:
parent
6334c6a072
commit
7eb4264ca5
3 changed files with 6 additions and 6 deletions
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3367199b67a733ed4bbd32de8c4a491b33394c6398fd8b91499996d973ad4171
|
||||
size 1250911
|
||||
oid sha256:69a75922cfbf58b0d39063c0dccc34dc69afef90d3d75489c9f9eeb65d4cb0c5
|
||||
size 1310282
|
||||
|
|
Binary file not shown.
|
@ -5,8 +5,8 @@
|
|||
*******************************************************************************
|
||||
*
|
||||
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/CollatorReader.java,v $
|
||||
* $Date: 2003/09/19 00:14:36 $
|
||||
* $Revision: 1.15 $
|
||||
* $Date: 2003/11/11 20:12:31 $
|
||||
* $Revision: 1.16 $
|
||||
*
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -226,8 +226,8 @@ final class CollatorReader
|
|||
rbc.m_defaultIsNumericCollation_ = (m_dataInputStream_.readInt()
|
||||
== RuleBasedCollator.AttributeValue.ON_);
|
||||
readcount += 4;
|
||||
m_dataInputStream_.skip(64); // reserved for future use
|
||||
readcount += 64;
|
||||
m_dataInputStream_.skip(60); // reserved for future use
|
||||
readcount += 60;
|
||||
m_dataInputStream_.skipBytes(m_optionSize_ - readcount);
|
||||
if (m_optionSize_ < readcount) {
|
||||
throw new IOException("Internal Error: Option size error");
|
||||
|
|
Loading…
Add table
Reference in a new issue