diff options
author | Keith Packard <keithp@keithp.com> | 2012-08-04 22:58:48 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-08-04 22:58:48 -0700 |
commit | 82a37d70e3cacf792c1aa18f8c0d2a19d6f321ed (patch) | |
tree | 4ac5c4ffd446c6d1e3611ff91dd4e0a282f99282 /altosui | |
parent | 2e7e304e67bc1e094282c8668fa8cccf09f9c9b4 (diff) |
altosui: Move 'implements Runnable' from AltosSerial to AltosLink
AltosLink is the class providing the 'run' method, after all...
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui')
-rw-r--r-- | altosui/AltosSerial.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosSerial.java b/altosui/AltosSerial.java index 8b692fa9..6cee1609 100644 --- a/altosui/AltosSerial.java +++ b/altosui/AltosSerial.java @@ -41,7 +41,7 @@ import libaltosJNI.*; * threads. */ -public class AltosSerial extends AltosLink implements Runnable { +public class AltosSerial extends AltosLink { static java.util.List<String> devices_opened = Collections.synchronizedList(new LinkedList<String>()); |