diff options
author | Keith Packard <keithp@keithp.com> | 2012-03-27 21:49:58 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-03-27 21:49:58 -0700 |
commit | 7a9baabaf33db5e30eb4ef8f923a4fd96fd28fb4 (patch) | |
tree | ee8182f04466077b961784bfb426ea404a1ff2de /altosui/AltosFlightUI.java | |
parent | 2f19f9a0eaba22789fdc07a52849e8aaf6fe4695 (diff) |
altosui: Mark data 'Age' in monitor idle UI too
Just like with the flight monitor UI, it's nice to know how old the
data in the monitor idle UI is, in case the data link to the TM isn't reliable.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosFlightUI.java')
-rw-r--r-- | altosui/AltosFlightUI.java | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/altosui/AltosFlightUI.java b/altosui/AltosFlightUI.java index d99da43d..b2ae4858 100644 --- a/altosui/AltosFlightUI.java +++ b/altosui/AltosFlightUI.java @@ -28,21 +28,6 @@ import java.text.*; import java.util.prefs.*; import java.util.concurrent.*; -class AltosFlightStatusUpdate implements ActionListener { - - public AltosState saved_state; - AltosFlightStatus flightStatus; - - public void actionPerformed (ActionEvent e) { - if (saved_state != null) - flightStatus.show(saved_state, 0); - } - - public AltosFlightStatusUpdate (AltosFlightStatus in_flightStatus) { - flightStatus = in_flightStatus; - } -} - public class AltosFlightUI extends AltosFrame implements AltosFlightDisplay, AltosFontListener { AltosVoice voice; AltosFlightReader reader; |