summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sources/prefs/editors/VSEditor.java3
-rw-r--r--sources/utils/VSTools.java1
2 files changed, 2 insertions, 2 deletions
diff --git a/sources/prefs/editors/VSEditor.java b/sources/prefs/editors/VSEditor.java
index 4436825..39a057f 100644
--- a/sources/prefs/editors/VSEditor.java
+++ b/sources/prefs/editors/VSEditor.java
@@ -364,7 +364,8 @@ public abstract class VSEditor implements ActionListener {
}
try {
- valField.setText(buffer.toString().substring(0, buffer.length()-1)+"]");
+ valField.setText(vec.toString());
+ //valField.setText(buffer.toString().substring(0, buffer.length()-1)+"]");
} catch (StringIndexOutOfBoundsException e) {
valField.setText("[]");
}
diff --git a/sources/utils/VSTools.java b/sources/utils/VSTools.java
index ca65fe6..80ba3ab 100644
--- a/sources/utils/VSTools.java
+++ b/sources/utils/VSTools.java
@@ -55,7 +55,6 @@ public final class VSTools {
*/
public static Vector<Integer> parseIntegerVector(String string)
throws exceptions.ParseIntegerVectorException {
- System.out.println("parse " + string);
Vector<Integer> vec = new Vector<Integer>();
int index = string.indexOf('[');