Merge "MidiBluetoothService: add new device to HashMap"

This commit is contained in:
Glenn Kasten
2015-11-02 22:51:12 +00:00
committed by Gerrit 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();