altosui: Remove debugging from KML export
authorKeith Packard <keithp@keithp.com>
Fri, 14 Sep 2012 19:58:54 +0000 (12:58 -0700)
committerKeith Packard <keithp@keithp.com>
Fri, 14 Sep 2012 19:58:54 +0000 (12:58 -0700)
Left in from testing the Eeprom export bug

Signed-off-by: Keith Packard <keithp@keithp.com>
altosui/AltosKML.java

index 6bac1d9c03eab2462c7b4ac9dedf51437c4e4abc..73a5ae53d7474e21598c6184593cc350ac4814c4 100644 (file)
@@ -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)