summaryrefslogtreecommitdiff
path: root/sources/prefs
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
parent9d704e679b0d38dc20bcdf866abdbd096b013284 (diff)
some cleanup
Diffstat (limited to 'sources/prefs')
-rw-r--r--sources/prefs/VSSerializablePrefs.java2
-rw-r--r--sources/prefs/editors/VSAbstractBetterEditor.java4
-rw-r--r--sources/prefs/editors/VSEditorTable.java8
3 files changed, 7 insertions, 7 deletions
diff --git a/sources/prefs/VSSerializablePrefs.java b/sources/prefs/VSSerializablePrefs.java
index 5282e5c..ccb5aab 100644
--- a/sources/prefs/VSSerializablePrefs.java
+++ b/sources/prefs/VSSerializablePrefs.java
@@ -24,7 +24,7 @@
package prefs;
import java.io.*;
-import java.util.*;
+//import java.util.*;
import serialize.*;
diff --git a/sources/prefs/editors/VSAbstractBetterEditor.java b/sources/prefs/editors/VSAbstractBetterEditor.java
index 9092e3e..9df7f78 100644
--- a/sources/prefs/editors/VSAbstractBetterEditor.java
+++ b/sources/prefs/editors/VSAbstractBetterEditor.java
@@ -28,7 +28,7 @@ import java.awt.event.*;
import javax.swing.*;
import prefs.*;
-import utils.*;
+//import utils.*;
/**
* The class VSAbstractBetterEditor, is an improved VSAbstractEditor.
@@ -94,7 +94,7 @@ public abstract class VSAbstractBetterEditor extends VSAbstractEditor {
JPanel editPanel = getEditPanel();
JPanel buttonPanel = getButtonPanel();
- JScrollPane scrollPane = new JScrollPane(editPanel);
+ //JScrollPane scrollPane = new JScrollPane(editPanel);
panel.add(editPanel);
//panel.add(infoArea);
panel.add(buttonPanel);
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);