Ignore case when comparing Bluetooth UUIDs.

This commit is contained in:
akwizgran
2011-10-28 12:54:20 +01:00
parent df125bdcd2
commit 0728f76933
3 changed files with 2 additions and 7 deletions

View File

@@ -233,8 +233,6 @@ class BluetoothPlugin extends AbstractPlugin implements StreamPlugin {
String address = p.get("address");
String uuid = p.get("uuid");
if(address != null && uuid != null) {
if(LOG.isLoggable(Level.FINE))
LOG.fine("Searching for " + uuid + " at " + address);
addresses.put(address, c);
uuids.put(c, uuid);
}