File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
src/main/java/net/seesharpsoft/intellij/plugins/csv/editor/table/swing Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 1414import java .awt .event .ActionListener ;
1515import java .io .IOException ;
1616import java .net .URI ;
17- import java .util .Vector ;
1817
1918public class CsvTableEditorActions extends CsvTableEditorUtilBase {
2019
@@ -145,18 +144,6 @@ public void actionPerformed(ActionEvent e) {
145144 }
146145 }
147146
148- private void removeColumn (DefaultTableModel tableModel , int column ) {
149- int prevColumnCount = tableModel .getColumnCount ();
150-
151- Vector rows = tableModel .getDataVector ();
152- for (Object row : rows ) {
153- ((Vector ) row ).remove (column );
154- }
155-
156- tableModel .setColumnCount (prevColumnCount - 1 );
157- tableModel .fireTableStructureChanged ();
158- }
159-
160147 private final class DeleteColumnAction implements ActionListener {
161148 @ Override
162149 public void actionPerformed (ActionEvent e ) {
You can’t perform that action at this time.
0 commit comments