am 017c5de1: Merge change I78c4e64a into eclair

Merge commit '017c5de1cf1228664da84b31012a386c2eac2232' into eclair-plus-aosp

* commit '017c5de1cf1228664da84b31012a386c2eac2232':
  Query from Bluez if name is not present in cache.
This commit is contained in:
Jaikumar Ganesh
2009-09-30 11:01:12 -07:00
committed by Android Git Automerger

View File

@@ -757,9 +757,7 @@ public class BluetoothService extends IBluetooth.Stub {
if (!BluetoothAdapter.checkBluetoothAddress(address)) {
return null;
}
Map <String, String> properties = mDeviceProperties.get(address);
if (properties != null) return properties.get("Name");
return null;
return getRemoteDeviceProperty(address, "Name");
}
/**