From f10fbff6758dfcfbeeeb224f8ab02fa107aae5f6 Mon Sep 17 00:00:00 2001 From: Justin Vreeland Date: Thu, 21 Apr 2016 08:30:10 -0400 Subject: 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 Signed-off-by: Keith Packard --- altoslib/AltosEepromChunk.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'altoslib/AltosEepromChunk.java') diff --git a/altoslib/AltosEepromChunk.java b/altoslib/AltosEepromChunk.java index d20bcd0a..7a80e294 100644 --- a/altoslib/AltosEepromChunk.java +++ b/altoslib/AltosEepromChunk.java @@ -69,7 +69,7 @@ public class AltosEepromChunk { eeprom = new AltosEepromTM(this, offset); break; case AltosLib.AO_LOG_FORMAT_TINY: - eeprom = new AltosEepromTm(this, offset, state); + eeprom = new AltosEepromTMini(this, offset, state); break; case AltosLib.AO_LOG_FORMAT_TELEMETRY: case AltosLib.AO_LOG_FORMAT_TELESCIENCE: -- cgit v1.2.3