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

Commit 3e425aa7 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 5616671 from 23f11427f87d313695457c111c24f4ddddf74f7c to rvc-release

Change-Id: I1b14d87eecf69ab52fee6cfb2288e19fdd739083
parents 6ac536d4 c90a510d
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -32,12 +32,12 @@ import android.util.Log;
 * @hide
 */
public abstract class BluetoothProfileConnector<T> {
    private int mProfileId;
    private final int mProfileId;
    private BluetoothProfile.ServiceListener mServiceListener;
    private BluetoothProfile mProfileProxy;
    private final BluetoothProfile mProfileProxy;
    private Context mContext;
    private String mProfileName;
    private String mServiceName;
    private final String mProfileName;
    private final String mServiceName;
    private volatile T mService;

    private final IBluetoothStateChangeCallback mBluetoothStateChangeCallback =
@@ -65,7 +65,7 @@ public abstract class BluetoothProfileConnector<T> {
            logDebug("Proxy object disconnected");
            doUnbind();
            if (mServiceListener != null) {
                mServiceListener.onServiceDisconnected(BluetoothProfile.A2DP);
                mServiceListener.onServiceDisconnected(mProfileId);
            }
        }
    };