Fixed an issue with it not compiling.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@371390 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d8d15c3e20
commit
a81ec9f00f
@ -90,7 +90,7 @@ public class ArrayPtg extends Ptg
|
|||||||
for (int y=0;y<token_2_rows;y++) {
|
for (int y=0;y<token_2_rows;y++) {
|
||||||
byte grbit = in.readByte();
|
byte grbit = in.readByte();
|
||||||
if (grbit == 0x01) {
|
if (grbit == 0x01) {
|
||||||
token_3_arrayValues[x][y] = Double.valueOf(in.readDouble());
|
token_3_arrayValues[x][y] = new Double(in.readDouble());
|
||||||
} else if (grbit == 0x02) {
|
} else if (grbit == 0x02) {
|
||||||
//Ignore the doco, it is actually a unicode string with all the
|
//Ignore the doco, it is actually a unicode string with all the
|
||||||
//trimmings ie 16 bit size, option byte etc
|
//trimmings ie 16 bit size, option byte etc
|
||||||
|
Loading…
Reference in New Issue
Block a user