You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/10/14 05:13:47 UTC

svn commit: r1764809 - /poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java

Author: onealj
Date: Fri Oct 14 05:13:47 2016
New Revision: 1764809

URL: http://svn.apache.org/viewvc?rev=1764809&view=rev
Log:
make cached fields transient

Modified:
    poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java?rev=1764809&r1=1764808&r2=1764809&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java Fri Oct 14 05:13:47 2016
@@ -56,12 +56,12 @@ import org.openxmlformats.schemas.spread
 public class XSSFTable extends POIXMLDocumentPart implements Table {
 
     private CTTable ctTable;
-    private List<XSSFXmlColumnPr> xmlColumnPr;
-    private CTTableColumn[] ctColumns;
-    private HashMap<String, Integer> columnMap;
-    private CellReference startCellReference;
-    private CellReference endCellReference;    
-    private String commonXPath; 
+    private transient List<XSSFXmlColumnPr> xmlColumnPr;
+    private transient CTTableColumn[] ctColumns;
+    private transient HashMap<String, Integer> columnMap;
+    private transient CellReference startCellReference;
+    private transient CellReference endCellReference;    
+    private transient String commonXPath; 
 
 
     public XSSFTable() {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org