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

(-)ValueRecordsAggregate.java (-1 / +1 lines)
Lines 213-219 Link Here
213
213
214
    /** Returns true if the row has cells attached to it */
214
    /** Returns true if the row has cells attached to it */
215
    public boolean rowHasCells(int row) {
215
    public boolean rowHasCells(int row) {
216
    	if (row > records.length)
216
    	if (row >= records.length)
217
    		return false;
217
    		return false;
218
      CellValueRecordInterface[] rowCells=records[row];
218
      CellValueRecordInterface[] rowCells=records[row];
219
      if(rowCells==null) return false;
219
      if(rowCells==null) return false;

Return to bug 41026