private final File _fd;\r
private final Writer _out;\r
private int _rownum;\r
- private boolean _rowContainedNullCells = false;\r
- int _numberOfFlushedRows;\r
- int _lowestIndexOfFlushedRows; // meaningful only of _numberOfFlushedRows>0\r
- int _numberOfCellsOfLastFlushedRow; // meaningful only of _numberOfFlushedRows>0\r
- int _numberLastFlushedRow = -1; // meaningful only of _numberOfFlushedRows>0\r
+ private int _numberOfFlushedRows;\r
+ private int _lowestIndexOfFlushedRows; // meaningful only of _numberOfFlushedRows>0\r
+ private int _numberOfCellsOfLastFlushedRow; // meaningful only of _numberOfFlushedRows>0\r
+ private int _numberLastFlushedRow = -1; // meaningful only of _numberOfFlushedRows>0\r
\r
public SheetDataWriter() throws IOException {\r
_fd = createTempFile();\r
\r
_out.write(">\n");\r
this._rownum = rownum;\r
- _rowContainedNullCells = false;\r
}\r
\r
void endRow() throws IOException {\r
\r
public void writeCell(int columnIndex, Cell cell) throws IOException {\r
if (cell == null) {\r
- _rowContainedNullCells = true;\r
return;\r
}\r
String ref = new CellReference(_rownum, columnIndex).formatAsString();\r