diff options
| author | Keith Packard <keithp@keithp.com> | 2013-09-06 16:52:06 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2013-09-06 16:52:06 -0700 | 
| commit | b66e0d4c107a0727279d03d1d0e1e40a9eaaa3bc (patch) | |
| tree | a7e4b95f0923cfb55b7acbb54293fcea514c637b | |
| parent | a1512255d20c8a395f30ed4914ddd3295842312b (diff) | |
altosui: Load Telem files in AltosDataChooser too
Telem file loading was stubbed out from AltosState changes
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | altosui/AltosDataChooser.java | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/altosui/AltosDataChooser.java b/altosui/AltosDataChooser.java index 0d0b0b0a..c0d66682 100644 --- a/altosui/AltosDataChooser.java +++ b/altosui/AltosDataChooser.java @@ -51,7 +51,7 @@ public class AltosDataChooser extends JFileChooser {  					return new AltosEepromFile(in);  				} else if (filename.endsWith("telem")) {  					FileInputStream in = new FileInputStream(file); -					return null; // new AltosTelemetryIterable(in); +					return new AltosTelemetryFile(in);  				} else {  					throw new FileNotFoundException();  				} | 
