Merge "Fix ANR due to long wait for synchronization lock"

am: 9193014ee6

Change-Id: Ic41c34a5701658aa328a83267ad3c818d55bd522
This commit is contained in:
Gurpreet Ghai
2018-02-07 03:59:38 +00:00
committed by android-build-merger

View File

@@ -194,8 +194,13 @@ public class LocalBluetoothAdapter {
return mState;
}
synchronized void setBluetoothStateInt(int state) {
mState = state;
void setBluetoothStateInt(int state) {
synchronized(this) {
if (mState == state) {
return;
}
mState = state;
}
if (state == BluetoothAdapter.STATE_ON) {
// if mProfileManager hasn't been constructed yet, it will