Merge "fixed parsing issue in BluetoothService so that it parses the UUID property correctly" into gingerbread
This commit is contained in:
@@ -919,7 +919,7 @@ public class BluetoothService extends IBluetooth.Stub {
|
|||||||
Log.e(TAG, "Error:Adapter Property at index" + i + "is null");
|
Log.e(TAG, "Error:Adapter Property at index" + i + "is null");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (name.equals("Devices")) {
|
if (name.equals("Devices") || name.equals("UUIDs")) {
|
||||||
StringBuilder str = new StringBuilder();
|
StringBuilder str = new StringBuilder();
|
||||||
len = Integer.valueOf(properties[++i]);
|
len = Integer.valueOf(properties[++i]);
|
||||||
for (int j = 0; j < len; j++) {
|
for (int j = 0; j < len; j++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user