# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /home/matthias/NetBeansProjects/main-golden # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: db.dataview/src/org/netbeans/modules/db/dataview/output/DataViewTableUI.java --- db.dataview/src/org/netbeans/modules/db/dataview/output/DataViewTableUI.java Base (BASE) +++ db.dataview/src/org/netbeans/modules/db/dataview/output/DataViewTableUI.java Locally Modified (Based On LOCAL) @@ -146,11 +146,15 @@ @Override public TableCellRenderer getCellRenderer(int row, int column) { + try { if (getModel().hasUpdates( convertRowIndexToModel(row), convertColumnIndexToModel(column))) { return new UpdatedResultSetCellRenderer(); } + } catch (IndexOutOfBoundsException ex) { + // Swallow it, caused by pack from JXTable - Bug #228753 + } return super.getCellRenderer(row, column); }