Index: ValueRecordsAggregate.java =================================================================== --- ValueRecordsAggregate.java (revision 478537) +++ ValueRecordsAggregate.java (working copy) @@ -213,7 +213,7 @@ /** Returns true if the row has cells attached to it */ public boolean rowHasCells(int row) { - if (row > records.length) + if (row >= records.length) return false; CellValueRecordInterface[] rowCells=records[row]; if(rowCells==null) return false;