diff options
author | Keith Packard <keithp@keithp.com> | 2012-09-14 12:58:54 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-09-14 12:58:54 -0700 |
commit | f36f73b2d02b72201683cf5795851034bbd6f28e (patch) | |
tree | e965397c656d8f2b8227011edd76dbd8255d31c6 | |
parent | 97ab77d548964115e4b41ad5952194fcd1455c96 (diff) |
altosui: Remove debugging from KML export
Left in from testing the Eeprom export bug
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosKML.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/altosui/AltosKML.java b/altosui/AltosKML.java index 6bac1d9c..73a5ae53 100644 --- a/altosui/AltosKML.java +++ b/altosui/AltosKML.java @@ -131,12 +131,9 @@ public class AltosKML implements AltosWriter { public void write(AltosRecord record) { AltosGPS gps = record.gps; - if (gps == null) { - System.out.printf ("no gps\n"); + if (gps == null) return; - } - System.out.printf ("seen %x\n", record.seen); if ((record.seen & (AltosRecord.seen_flight)) == 0) return; if ((record.seen & (AltosRecord.seen_gps_lat)) == 0) |