summaryrefslogtreecommitdiff
path: root/sources/prefs/editors/VSEditorTable.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-08-13 16:01:14 +0000
committerPaul Buetow <paul@buetow.org>2008-08-13 16:01:14 +0000
commit5bf750ce5d254cc85790adefccbff78277019353 (patch)
tree1af87bf66e724429f74422a4884bcc4d7ece12c8 /sources/prefs/editors/VSEditorTable.java
parent9d704e679b0d38dc20bcdf866abdbd096b013284 (diff)
some cleanup
Diffstat (limited to 'sources/prefs/editors/VSEditorTable.java')
-rw-r--r--sources/prefs/editors/VSEditorTable.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/sources/prefs/editors/VSEditorTable.java b/sources/prefs/editors/VSEditorTable.java
index bb171dd..246bd8e 100644
--- a/sources/prefs/editors/VSEditorTable.java
+++ b/sources/prefs/editors/VSEditorTable.java
@@ -26,7 +26,7 @@ package prefs.editors;
import java.util.*;
import java.awt.*;
-import java.io.*;
+//import java.io.*;
import javax.swing.*;
import javax.swing.table.*;
import javax.swing.text.*;
@@ -44,10 +44,10 @@ public class VSEditorTable extends JTable {
private static final long serialVersionUID = 1L;
/** The Constant MIN_ROWS. */
- private static final int MIN_ROWS = 20;
+ //private static final int MIN_ROWS = 20;
/** The prefs. */
- private VSPrefs prefs;
+ //private VSPrefs prefs;
/** The nodes. */
private ArrayList<VSNode> nodes;
@@ -267,7 +267,7 @@ public class VSEditorTable extends JTable {
* @param prefs the prefs
*/
public VSEditorTable(VSPrefs prefs) {
- this.prefs = prefs;
+ //this.prefs = prefs;
this.nodes = new ArrayList<VSNode>();
this.model = new VSEditorTableModel();
setModel(model);