Document the need for ~/altusmetrumllc/google-maps-api-key
[fw/altos] / altosui / AltosBTDeviceIterator.java
index 7c360705d3cdd4c2e58e5d68312293934124c34a..4be5edf5e50693def94c9912a08843fb13a28efa 100644 (file)
@@ -16,7 +16,6 @@
  */
 
 package altosui;
-import java.lang.*;
 import java.util.*;
 import libaltosJNI.*;
 
@@ -26,7 +25,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 +33,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;
                }