altoslib: Remove spurious debug message
authorKeith Packard <keithp@keithp.com>
Fri, 12 Apr 2013 07:55:59 +0000 (00:55 -0700)
committerKeith Packard <keithp@keithp.com>
Fri, 12 Apr 2013 07:55:59 +0000 (00:55 -0700)
Signed-off-by: Keith Packard <keithp@keithp.com>
altoslib/AltosRecord.java

index 7046b9f10106c34b397e7f088dae0a6bb58b8022..07e910eb726e53fb28471521035f7f0a68b7665b 100644 (file)
@@ -82,10 +82,8 @@ public class AltosRecord implements Comparable <AltosRecord>, Cloneable {
        public double altitude() {
                double  p = pressure();
 
-               if (p == MISSING) {
-                       System.out.printf ("altitude missing\n");
+               if (p == MISSING)
                        return MISSING;
-               }
                return AltosConvert.pressure_to_altitude(p);
        }