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

Commit 6a7ef6d4 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix build warning." into main

parents dafdb83c e9190a15
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@ import java.util.function.Consumer;
/** A dialog fragment for constructing and showing audio stream dialogs. */
public class AudioStreamsDialogFragment extends InstrumentedDialogFragment {
    private static final String TAG = "AudioStreamsDialogFragment";
    @Nullable
    private DialogBuilder mDialogBuilder;
    private int mDialogId = SettingsEnums.PAGE_UNKNOWN;

@@ -61,7 +62,7 @@ public class AudioStreamsDialogFragment extends InstrumentedDialogFragment {
        if (mDialogBuilder == null) {
            // Will not show the dialog if mDialogBuilder is null.
            setShowsDialog(false);
            return null;
            return new AlertDialog.Builder(requireActivity()).create();
        }
        return mDialogBuilder.build();
    }