altosui: Remove a bunch of debugging printfs
[fw/altos] / altosui / AltosBTDevice.java
index f6926b1066fde81b571a6e634b9afe25a0ef616a..5e353fddc42be0433dbba9ff8a292f924975bf88 100644 (file)
@@ -87,7 +87,6 @@ public class AltosBTDevice extends altos_bt_device implements AltosDevice {
 
        public boolean matchProduct(int want_product) {
 
-               System.out.printf("matchProduct %s %d\n", toString(), want_product);
 //             if (!isAltusMetrum())
 //                     return false;
 
@@ -107,7 +106,6 @@ public class AltosBTDevice extends altos_bt_device implements AltosDevice {
                if (!(o instanceof AltosBTDevice))
                        return false;
                AltosBTDevice other = (AltosBTDevice) o;
-               System.out.printf("AltosBTDevice equals %s == %s\n", toString(), other.toString());
                return getName().equals(other.getName()) && getAddr().equals(other.getAddr());
        }