Browse Source

no message

Edgardo Palza 8 years ago
parent
commit
d4368f939b
1 changed files with 8 additions and 9 deletions
  1. 8 9
      src/ui/view/DefaulTable.java

+ 8 - 9
src/ui/view/DefaulTable.java

@@ -22,13 +22,12 @@ public class DefaulTable extends DefaultTableModel {
 		this.fireTableCellUpdated(row, col);
 		this.fireTableCellUpdated(row, col);
 	}
 	}
 
 
-	@Override
-	public TableCellEditor getCellEditor(int row, int column) {
-		if (column == 1) {
-			Object value = getValueAt(row, column);
-			if (value != null)
-				return getDefaultEditor(value.getClass());
-		}
-		return super.getCellEditor(row, column);
-	}
+//	public TableCellEditor getCellEditor(int row, int column) {
+//		if (column == 1) {
+//			Object value = getValueAt(row, column);
+//			if (value != null)
+//				return getDefaultEditor(value.getClass());
+//		}
+//		return super.getCellEditor(row, column);
+//	}
 }
 }