]> source.dussan.org Git - poi.git/commitdiff
make cached fields transient
authorJaven O'Neal <onealj@apache.org>
Fri, 14 Oct 2016 05:13:47 +0000 (05:13 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 14 Oct 2016 05:13:47 +0000 (05:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1764809 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java

index f989d65304eee94ba40a16fc9945dc1ac7991493..fb59384a16f69d469246adc504140548445c23f5 100644 (file)
@@ -56,12 +56,12 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.TableDocument;
 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() {