From 5664fd4644c78f4571a1a72e6b9f0511fb10720a Mon Sep 17 00:00:00 2001 From: abranson Date: Tue, 2 Aug 2011 22:10:28 +0200 Subject: Finished move to generics. Enforced 1.6 compliance for now. No errors or warnings :) --- .../com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) mode change 100755 => 100644 source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java (limited to 'source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java') diff --git a/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java b/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java old mode 100755 new mode 100644 index ef20a1a..bb71cd8 --- a/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java +++ b/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java @@ -48,17 +48,16 @@ public class CollectionHistoryWindow extends JFrame { private class HistoryTableModel extends AbstractTableModel implements EntityProxyObserver { ItemProxy item; - ArrayList collEvents, collEventData; + ArrayList collEvents, collEventData; Collection coll; public HistoryTableModel(ItemProxy item, Collection coll) { this.item = item; this.coll = coll; - collEvents = new ArrayList(); - collEventData = new ArrayList(); + collEvents = new ArrayList(); + collEventData = new ArrayList(); item.subscribe(this, ClusterStorage.HISTORY, true); } public int getColumnCount() { - // TODO Auto-generated method stub return 4; } @@ -72,7 +71,6 @@ public class CollectionHistoryWindow extends JFrame { } } public int getRowCount() { - // TODO Auto-generated method stub return collEvents.size(); } public Object getValueAt(int rowIndex, int columnIndex) { -- cgit v1.2.3