altosui: Remove debugging printfs from AltosSerial
authorKeith Packard <keithp@keithp.com>
Tue, 9 Aug 2011 01:53:03 +0000 (18:53 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 9 Aug 2011 01:53:03 +0000 (18:53 -0700)
Signed-off-by: Keith Packard <keithp@keithp.com>
altosui/AltosSerial.java

index 6c687f5f17c0ab21c93f715b5a3e7e368dcd0ba1..c0eeb92084a446a1e1537b65dd3117f0a73ce076 100644 (file)
@@ -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;