From: Keith Packard Date: Mon, 20 Sep 2010 13:30:49 +0000 (-0700) Subject: altosui: remove unused ReplayThread wrapper classes X-Git-Tag: debian/0.7.1+28+gd8a2f4c~7^2~1 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=34ca8c00f4be72c314baff4c96f1e2f010948454;hp=fd010661ced6075f82a961625826665a3d8d1efe 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 --- 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() {