Author: yegor
Date: Sun May 15 18:40:13 2011
New Revision: 1103502

URL: http://svn.apache.org/viewvc?rev=1103502&view=rev
Log:
Bugzilla 51171: Improved performance of opening large .xls files

Modified:
    poi/trunk/src/documentation/content/xdocs/status.xml
    poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java

Modified: poi/trunk/src/documentation/content/xdocs/status.xml
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/documentation/content/xdocs/status.xml?rev=1103502&r1=1103501&r2=1103502&view=diff
==============================================================================
--- poi/trunk/src/documentation/content/xdocs/status.xml (original)
+++ poi/trunk/src/documentation/content/xdocs/status.xml Sun May 15 18:40:13 
2011
@@ -34,6 +34,7 @@
 
     <changes>
         <release version="3.8-beta3" date="2011-??-??">
+           <action dev="poi-developers" type="add">51171 - Improved 
performance of opening large .xls files</action>
            <action dev="poi-developers" type="add">51172 - Add XWPF support 
for GIF pictures</action>
            <action dev="poi-developers" type="add">NPOIFS Mini Streams now 
support extending the underlying big block stream to fit more data</action>
            <action dev="poi-developers" type="fix">51148 - XWPFDocument now 
properly tracks paragraphs and tables when adding/removing them</action>

Modified: poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java?rev=1103502&r1=1103501&r2=1103502&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java Sun May 15 
18:40:13 2011
@@ -194,9 +194,6 @@ public class HSSFCell implements Cell {
                 _stringValue=new HSSFRichTextString(((FormulaRecordAggregate) 
cval).getStringValue());
                 break;
         }
-        ExtendedFormatRecord xf = 
book.getWorkbook().getExFormatAt(cval.getXFIndex());
-
-        setCellStyle(new HSSFCellStyle(cval.getXFIndex(), xf, book));
     }
 
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to