diff options
author | Keith Packard <keithp@keithp.com> | 2016-04-28 12:29:16 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-04-28 12:29:16 -0700 |
commit | ec20e2f72460010c4f59e6d59775671260e01026 (patch) | |
tree | 26550cdb6537581616e5ee8505dd80613a1f7c52 /altoslib/AltosLink.java | |
parent | 3c7b68b8a513b611500dfd734182e1a2e7bdd40c (diff) |
altoslib: Make AltosPreferencesBackend abstract. Add set/put Serializable
This lets us add functionality to this directly, such as the new
serializable APIs.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosLink.java')
-rw-r--r-- | altoslib/AltosLink.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/altoslib/AltosLink.java b/altoslib/AltosLink.java index 73bab3ef..cd8609c0 100644 --- a/altoslib/AltosLink.java +++ b/altoslib/AltosLink.java @@ -170,8 +170,8 @@ public abstract class AltosLink implements Runnable { boolean can_cancel = can_cancel_reply(); String reply = null; - if (!can_cancel && remote) - System.out.printf("Uh-oh, reading remote serial device from swing thread\n"); +// if (!can_cancel && remote) +// System.out.printf("Uh-oh, reading remote serial device from swing thread\n"); if (remote && can_cancel) { timeout = 500; |