Author: slaubach Date: Sun Jan 22 13:16:27 2006 New Revision: 371390 URL: http://svn.apache.org/viewcvs?rev=371390&view=rev Log: Fixed an issue with it not compiling.
Modified: jakarta/poi/trunk/src/java/org/apache/poi/hssf/record/formula/ArrayPtg.java Modified: jakarta/poi/trunk/src/java/org/apache/poi/hssf/record/formula/ArrayPtg.java URL: http://svn.apache.org/viewcvs/jakarta/poi/trunk/src/java/org/apache/poi/hssf/record/formula/ArrayPtg.java?rev=371390&r1=371389&r2=371390&view=diff ============================================================================== --- jakarta/poi/trunk/src/java/org/apache/poi/hssf/record/formula/ArrayPtg.java (original) +++ jakarta/poi/trunk/src/java/org/apache/poi/hssf/record/formula/ArrayPtg.java Sun Jan 22 13:16:27 2006 @@ -90,7 +90,7 @@ for (int y=0;y<token_2_rows;y++) { byte grbit = in.readByte(); 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) { //Ignore the doco, it is actually a unicode string with all the //trimmings ie 16 bit size, option byte etc --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta POI Project: http://jakarta.apache.org/poi/