Lines 783-789
Link Here
|
783 |
int dbCellOffset = 0; |
783 |
int dbCellOffset = 0; |
784 |
for (int block=0;block<blockCount;block++) { |
784 |
for (int block=0;block<blockCount;block++) { |
785 |
rowBlockOffset += rows.getRowBlockSize(block); |
785 |
rowBlockOffset += rows.getRowBlockSize(block); |
786 |
cellBlockOffset += cells.getRowCellBlockSize(rows.getStartRowNumberForBlock(block), |
786 |
cellBlockOffset += null == cells ? 0 : cells.getRowCellBlockSize(rows.getStartRowNumberForBlock(block), |
787 |
rows.getEndRowNumberForBlock(block)); |
787 |
rows.getEndRowNumberForBlock(block)); |
788 |
//Note: The offsets are relative to the Workbook BOF. Assume that this is |
788 |
//Note: The offsets are relative to the Workbook BOF. Assume that this is |
789 |
//0 for now..... |
789 |
//0 for now..... |