summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosUI.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2010-09-20 06:30:49 -0700
committerKeith Packard <keithp@keithp.com>2010-09-20 06:30:49 -0700
commit34ca8c00f4be72c314baff4c96f1e2f010948454 (patch)
treebe9394e82d06af9a51f82fc785369711cefdb161 /ao-tools/altosui/AltosUI.java
parentfd010661ced6075f82a961625826665a3d8d1efe (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>
Diffstat (limited to 'ao-tools/altosui/AltosUI.java')
-rw-r--r--ao-tools/altosui/AltosUI.java13
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() {