altosui: remove unused ReplayThread wrapper classes
authorKeith Packard <keithp@keithp.com>
Mon, 20 Sep 2010 13:30:49 +0000 (06:30 -0700)
committerKeith Packard <keithp@keithp.com>
Mon, 20 Sep 2010 13:30:49 +0000 (06:30 -0700)
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>
ao-tools/altosui/AltosUI.java

index 456031ece0c407822bd1ba1e431afcb4ae960ce2..1adeeccfee47ae35ce9c2256ba49654356adc427 100644 (file)
@@ -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() {