diff options
| author | Keith Packard <keithp@keithp.com> | 2012-07-11 14:28:53 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-07-11 14:28:53 -0700 |
| commit | f078a591cf2fafe89bb1bb883f49d80750129d44 (patch) | |
| tree | 40947ecff4083f8932a30a866a96fd64edd18f8d /altosui/AltosBTManage.java | |
| parent | 846a6298e4a8bfbe87bb24d7b0802c0bf6f233be (diff) | |
altosui: Remove a bunch of debugging printfs
These aren't useful at this point.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosBTManage.java')
| -rw-r--r-- | altosui/AltosBTManage.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/altosui/AltosBTManage.java b/altosui/AltosBTManage.java index d2899d65..aeb964bb 100644 --- a/altosui/AltosBTManage.java +++ b/altosui/AltosBTManage.java @@ -126,7 +126,6 @@ public class AltosBTManage extends AltosDialog implements ActionListener, Iterab public void add_known() { for (AltosBTDevice device : visible_devices.selected_list()) { - System.out.printf("Add known %s\n", device.toString()); known_devices.add(device); visible_devices.remove(device); } @@ -134,7 +133,6 @@ public class AltosBTManage extends AltosDialog implements ActionListener, Iterab public void remove_known() { for (AltosBTDevice device : known_devices.selected_list()) { - System.out.printf("Remove known %s\n", device.toString()); known_devices.remove(device); visible_devices.add(device); } @@ -151,7 +149,6 @@ public class AltosBTManage extends AltosDialog implements ActionListener, Iterab public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); - System.out.printf("manage command %s\n", command); if ("ok".equals(command)) { bt_thread.interrupt(); commit(); |
