mirror of https://github.com/apache/poi.git
make cached fields transient
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1764809 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3175e9ec14
commit
d7f4b7e36c
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue