altoslib: Remove spurious debug printf in AltosCalData
authorKeith Packard <keithp@keithp.com>
Sun, 30 Dec 2018 22:15:51 +0000 (14:15 -0800)
committerKeith Packard <keithp@keithp.com>
Sun, 30 Dec 2018 22:17:27 +0000 (14:17 -0800)
Signed-off-by: Keith Packard <keithp@keithp.com>
altoslib/AltosCalData.java

index c3d79250a6e54cb23e25a2fb870e988f16dccce5..22d19def1ba9397fbdec3ab510131407afe8bdf8 100644 (file)
@@ -156,8 +156,6 @@ public class AltosCalData {
        public double acceleration(double sensor) {
                double accel;
                accel = AltosConvert.acceleration_from_sensor(sensor, accel_plus_g, accel_minus_g, ground_accel);
        public double acceleration(double sensor) {
                double accel;
                accel = AltosConvert.acceleration_from_sensor(sensor, accel_plus_g, accel_minus_g, ground_accel);
-               System.out.printf("acceleration %g (+ %g - %g g %g) -> %g\n",
-                                 sensor, accel_plus_g, accel_minus_g, ground_accel, accel);
                return accel;
        }
 
                return accel;
        }