diff options
author | Keith Packard <keithp@keithp.com> | 2017-05-09 02:31:04 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-05-09 02:31:04 -0700 |
commit | 0641326842bffbf4b3ae69459ca540131cb64e59 (patch) | |
tree | 31231c75d916a978de51c4f303af516e147de115 /altosuilib/AltosEepromSelect.java | |
parent | 17e20a6d2dab1f4bd1375bfd9e1c5230ee2c1119 (diff) |
altoslib: Remove older eeprom handling code
The new code appears to work in minor testing; time to try it all the time.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosuilib/AltosEepromSelect.java')
-rw-r--r-- | altosuilib/AltosEepromSelect.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/altosuilib/AltosEepromSelect.java b/altosuilib/AltosEepromSelect.java index 0b4b7a85..2c6ee6d7 100644 --- a/altosuilib/AltosEepromSelect.java +++ b/altosuilib/AltosEepromSelect.java @@ -38,11 +38,7 @@ class AltosEepromItem implements ActionListener { log = in_log; String text; - if (log.year != 0) - text = String.format("Flight #%02d - %04d-%02d-%02d", - log.flight, log.year, log.month, log.day); - else - text = String.format("Flight #%02d", log.flight); + text = String.format("Flight #%02d", log.flight); label = new JLabel(text); |