View | Details | Raw Unified | Return to bug 41761
Collapse All | Expand All

(-)RowRecordsAggregate.java (-1 / +1 lines)
Lines 213-219 Link Here
213
          //Note: Cell references start from the second row...
213
          //Note: Cell references start from the second row...
214
          int cellRefOffset = (rowBlockSize-20);
214
          int cellRefOffset = (rowBlockSize-20);
215
          for (int row=startRowNumber;row<=endRowNumber;row++) {
215
          for (int row=startRowNumber;row<=endRowNumber;row++) {
216
            if (cells.rowHasCells(row)) {
216
            if (null != cells && cells.rowHasCells(row)) {
217
              final int rowCellSize = cells.serializeCellRow(row, pos, data);
217
              final int rowCellSize = cells.serializeCellRow(row, pos, data);
218
              pos += rowCellSize;
218
              pos += rowCellSize;
219
              //Add the offset to the first cell for the row into the DBCellRecord.
219
              //Add the offset to the first cell for the row into the DBCellRecord.

Return to bug 41761