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/AltosBTDeviceIterator.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/AltosBTDeviceIterator.java')
-rw-r--r-- | altosui/AltosBTDeviceIterator.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/altosui/AltosBTDeviceIterator.java b/altosui/AltosBTDeviceIterator.java index 7c360705..58ed86d5 100644 --- a/altosui/AltosBTDeviceIterator.java +++ b/altosui/AltosBTDeviceIterator.java @@ -26,7 +26,6 @@ public class AltosBTDeviceIterator implements Iterator<AltosBTDevice> { SWIGTYPE_p_altos_bt_list list; public boolean hasNext() { - System.out.printf ("BT has next?\n"); if (list == null) return false; if (current != null) @@ -35,7 +34,6 @@ public class AltosBTDeviceIterator implements Iterator<AltosBTDevice> { return false; current = new AltosBTDevice(); while (libaltos.altos_bt_list_next(list, current) != 0) { - System.out.printf("Got BT device %s\n", current.toString()); // if (current.matchProduct(product)) return true; } |