diff options
| author | Keith Packard <keithp@keithp.com> | 2012-07-11 14:28:53 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-07-11 14:28:53 -0700 |
| commit | f078a591cf2fafe89bb1bb883f49d80750129d44 (patch) | |
| tree | 40947ecff4083f8932a30a866a96fd64edd18f8d /altosui/AltosBTDevice.java | |
| parent | 846a6298e4a8bfbe87bb24d7b0802c0bf6f233be (diff) | |
altosui: Remove a bunch of debugging printfs
These aren't useful at this point.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosBTDevice.java')
| -rw-r--r-- | altosui/AltosBTDevice.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/altosui/AltosBTDevice.java b/altosui/AltosBTDevice.java index f6926b10..5e353fdd 100644 --- a/altosui/AltosBTDevice.java +++ b/altosui/AltosBTDevice.java @@ -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()); } |
