summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-08-08 18:53:03 -0700
committerKeith Packard <keithp@keithp.com>2011-08-08 18:53:03 -0700
commit97cf285d041062ae473c2823438b81c8fffe7f67 (patch)
tree8171941cc09b68aecfaf98e99b2f3f4d3d36f6e0
parent364102d29ff4de0c252774f26417587fa88b7467 (diff)
altosui: Remove debugging printfs from AltosSerial
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altosui/AltosSerial.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/altosui/AltosSerial.java b/altosui/AltosSerial.java
index 6c687f5f..c0eeb920 100644
--- a/altosui/AltosSerial.java
+++ b/altosui/AltosSerial.java
@@ -215,7 +215,6 @@ public class AltosSerial implements Runnable {
boolean can_cancel = true;
++in_reply;
- System.out.printf("get_reply %d\n", timeout);
if (SwingUtilities.isEventDispatchThread()) {
can_cancel = false;
System.out.printf("Uh-oh, reading serial device from swing thread\n");
@@ -246,7 +245,6 @@ public class AltosSerial implements Runnable {
public String get_reply_no_dialog(int timeout) throws InterruptedException, TimeoutException {
flush_output();
- System.out.printf("get_reply_no_dialog\n");
AltosLine line = reply_queue.poll(timeout, TimeUnit.MILLISECONDS);
if (line != null)
return line.line;