]> source.dussan.org Git - poi.git/commitdiff
Bugzilla 51171: Improved performance of opening large .xls files
authorYegor Kozlov <yegor@apache.org>
Sun, 15 May 2011 18:40:13 +0000 (18:40 +0000)
committerYegor Kozlov <yegor@apache.org>
Sun, 15 May 2011 18:40:13 +0000 (18:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1103502 13f79535-47bb-0310-9956-ffa450edef68

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

index ad97b96946b19083731218aff9959357dcfb72c1..abb4d41832518f0f6b0376317f88d4a7c41d266c 100644 (file)
@@ -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>
index d89c86760e533b04c7aaaad7c04c6e381792de46..28c15fac723510c6a6a216c78a6f3fedc9b344f1 100644 (file)
@@ -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));
     }