diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-18 13:36:04 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-12-18 13:36:04 -0800 |
commit | c1bfe09b6d3eb28d0c7cfe07a248843cf81bcd25 (patch) | |
tree | 702400b1b2ed20c88bb7c20bcf2969efd4319113 /altoslib/AltosIdleMonitor.java | |
parent | 58ceb9c845d51547244538fe6beec27e9a232af8 (diff) |
altosui: Remove some debug printfs
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosIdleMonitor.java')
-rw-r--r-- | altoslib/AltosIdleMonitor.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/altoslib/AltosIdleMonitor.java b/altoslib/AltosIdleMonitor.java index c816c202..d9d71143 100644 --- a/altoslib/AltosIdleMonitor.java +++ b/altoslib/AltosIdleMonitor.java @@ -91,14 +91,11 @@ public class AltosIdleMonitor extends Thread { } public void abort() throws InterruptedException { - System.out.printf("Attempting to abort monitor thread\n"); while (isAlive()) { - System.out.printf("Interrupting\n"); interrupt(); link.abort_reply(); Thread.sleep(100); } - System.out.printf("Appears to be dead now\n"); join(); } |