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

Commit 6ca1e8ec authored by Alexandr Shabalin's avatar Alexandr Shabalin Committed by Android (Google) Code Review
Browse files

Merge "Change type of mMutingExpectedDevice from Boolean to boolean." into main

parents d168dfcc cde191e3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ public class BluetoothMediaDevice extends MediaDevice {

    private final CachedBluetoothDevice mCachedDevice;
    private final AudioManager mAudioManager;
    private final Boolean mIsMutingExpectedDevice;
    private final boolean mIsMutingExpectedDevice;

    BluetoothMediaDevice(
            @NonNull Context context,
@@ -61,7 +61,7 @@ public class BluetoothMediaDevice extends MediaDevice {
            @Nullable MediaRoute2Info info,
            @Nullable DynamicRouteAttributes dynamicRouteAttributes,
            @Nullable RouteListingPreference.Item item,
            Boolean isMutingExpectedDevice) {
            boolean isMutingExpectedDevice) {
        super(context, info, dynamicRouteAttributes, item);
        mCachedDevice = device;
        mIsMutingExpectedDevice = isMutingExpectedDevice;