summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--altosui/AltosDataChooser.java2
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();
}