diff options
| author | Paul Buetow <paul@buetow.org> | 2008-06-12 22:50:37 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-06-12 22:50:37 +0000 |
| commit | fa865850c8c377193c9f5764bc966542c34f9ab3 (patch) | |
| tree | af4be7bfbb410e180ced9e0bd214207c5189709c /sources/simulator/VSSimulator.java | |
| parent | 1e5279ef1c03216c1ad78ebabb7a63d09d3c41d1 (diff) | |
Bugfix: File chooser now uses absolute path to a file.
Diffstat (limited to 'sources/simulator/VSSimulator.java')
| -rw-r--r-- | sources/simulator/VSSimulator.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sources/simulator/VSSimulator.java b/sources/simulator/VSSimulator.java index fb34dec..49079a3 100644 --- a/sources/simulator/VSSimulator.java +++ b/sources/simulator/VSSimulator.java @@ -335,7 +335,6 @@ public class VSSimulator extends JPanel implements VSSerializable { if (SwingUtilities.isRightMouseButton(me)) { ActionListener actionListener = new ActionListener() { public void actionPerformed(ActionEvent ae) { - System.out.println("BAZ"); String command = ae.getActionCommand(); if (command.equals(prefs.getString("lang.remove"))) { removeTaskAtRow(row); @@ -597,7 +596,6 @@ public class VSSimulator extends JPanel implements VSSerializable { prefs.getString("lang.logging.clear")); clearButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { - System.out.println("BAY"); String command = ae.getActionCommand(); if (command.equals( prefs.getString("lang.logging.clear"))) { @@ -820,7 +818,6 @@ public class VSSimulator extends JPanel implements VSSerializable { takeoverButton.addActionListener(new ActionListener() { private boolean isRed; public void actionPerformed(ActionEvent ae) { - System.out.println("BAR"); String textValue = textField.getText(); Long longValue = null; @@ -876,7 +873,6 @@ public class VSSimulator extends JPanel implements VSSerializable { for (VSProcess process : processes) { VSTask task = createTask.createTask(process, time, localTasks); - System.out.println(task); taskManager.addTask(task, VSTaskManager.PROGRAMMED); if (selectedProcess == null || |
