Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 557974ba authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "BT: Synchronize Bond SM message processing and cleanup" am: 192d330c

Change-Id: I614101fbd3cd70f42d3ec61ede5e753aa3962b12
parents 9f5541ac 192d330c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ final class BondStateMachine extends StateMachine {
        return bsm;
    }

    public void doQuit() {
    public synchronized void doQuit() {
        quitNow();
    }

@@ -122,7 +122,7 @@ final class BondStateMachine extends StateMachine {
        }

        @Override
        public boolean processMessage(Message msg) {
        public synchronized boolean processMessage(Message msg) {

            BluetoothDevice dev = (BluetoothDevice) msg.obj;

@@ -178,7 +178,7 @@ final class BondStateMachine extends StateMachine {
        }

        @Override
        public boolean processMessage(Message msg) {
        public synchronized boolean processMessage(Message msg) {
            BluetoothDevice dev = (BluetoothDevice) msg.obj;
            DeviceProperties devProp = mRemoteDevices.getDeviceProperties(dev);
            boolean result = false;