summaryrefslogtreecommitdiff
path: root/altoslib/AltosEepromFile.java
diff options
context:
space:
mode:
authorJustin Vreeland <vreeland.justin@gmail.com>2016-04-21 08:30:10 -0400
committerKeith Packard <keithp@keithp.com>2016-04-21 21:34:18 -0400
commitf10fbff6758dfcfbeeeb224f8ab02fa107aae5f6 (patch)
treed090893b0ac03918ddc9e2c7765901a997c1f7f4 /altoslib/AltosEepromFile.java
parentc989237366ada094cdc817f50b7f58bbcf5b377a (diff)
Fix java class differing only by case
OSX and Windows cannot handle files with names differing only by case. When these files are present in either there's a constant unfixable change viewable in git status and git diff. Since this code can be run and compiled on both platforms names different only by case should be avoided. Signed-off-by: Justin Vreeland <vreeland.justin@gmail.com> Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosEepromFile.java')
-rw-r--r--altoslib/AltosEepromFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altoslib/AltosEepromFile.java b/altoslib/AltosEepromFile.java
index 6c75cb90..000bb1be 100644
--- a/altoslib/AltosEepromFile.java
+++ b/altoslib/AltosEepromFile.java
@@ -89,7 +89,7 @@ public class AltosEepromFile extends AltosStateIterable {
body = new AltosEepromIterable(AltosEepromTM.read(input));
break;
case AltosLib.AO_LOG_FORMAT_TINY:
- body = new AltosEepromIterable(AltosEepromTm.read(input));
+ body = new AltosEepromIterable(AltosEepromTMini.read(input));
break;
case AltosLib.AO_LOG_FORMAT_TELEMETRY:
case AltosLib.AO_LOG_FORMAT_TELESCIENCE: