diff options
author | Keith Packard <keithp@keithp.com> | 2010-09-20 06:30:49 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-09-20 06:30:49 -0700 |
commit | 34ca8c00f4be72c314baff4c96f1e2f010948454 (patch) | |
tree | be9394e82d06af9a51f82fc785369711cefdb161 | |
parent | fd010661ced6075f82a961625826665a3d8d1efe (diff) |
altosui: remove unused ReplayThread wrapper classes
These aren't used now that the replay opener dialog knows how to build
a reader from a filename.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | ao-tools/altosui/AltosUI.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ao-tools/altosui/AltosUI.java b/ao-tools/altosui/AltosUI.java index 456031ec..1adeeccf 100644 --- a/ao-tools/altosui/AltosUI.java +++ b/ao-tools/altosui/AltosUI.java @@ -445,19 +445,6 @@ public class AltosUI extends JFrame { } } - class ReplayTelemetryThread extends ReplayThread { - ReplayTelemetryThread(FileInputStream in, String in_name) { - super(new AltosTelemetryReader(in), in_name); - } - - } - - class ReplayEepromThread extends ReplayThread { - ReplayEepromThread(FileInputStream in, String in_name) { - super(new AltosEepromReader(in), in_name); - } - } - Thread display_thread; private void stop_display() { |