From: Keith Packard Date: Fri, 14 Sep 2012 19:58:54 +0000 (-0700) Subject: altosui: Remove debugging from KML export X-Git-Tag: 1.1.1~6 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=f36f73b2d02b72201683cf5795851034bbd6f28e;hp=97ab77d548964115e4b41ad5952194fcd1455c96 altosui: Remove debugging from KML export Left in from testing the Eeprom export bug Signed-off-by: Keith Packard --- 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)