Merge "MidiBluetoothService: add new device to HashMap" into mnc-dr-dev

This commit is contained in:
Eric Laurent
2015-10-13 01:09:32 +00:00
committed by Android (Google) Code Review

View File

@ -46,6 +46,7 @@ public class BluetoothMidiService extends Service {
device = mDeviceServerMap.get(bluetoothDevice);
if (device == null) {
device = new BluetoothMidiDevice(this, bluetoothDevice, this);
mDeviceServerMap.put(bluetoothDevice, device);
}
}
return device.getBinder();