From: Keith Packard Date: Tue, 9 Aug 2011 01:53:03 +0000 (-0700) Subject: altosui: Remove debugging printfs from AltosSerial X-Git-Tag: 0.9.6.0~49 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=97cf285d041062ae473c2823438b81c8fffe7f67 altosui: Remove debugging printfs from AltosSerial Signed-off-by: Keith Packard --- 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;