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

Commit 7c802419 authored by Julia Reynolds's avatar Julia Reynolds Committed by Android (Google) Code Review
Browse files

Merge "Fix build" into nyc-dev

parents bef02df5 40a82187
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -137,11 +137,11 @@ public abstract class ConfirmDeviceCredentialBaseFragment extends InstrumentedFr
        if (intent != null) {
        if (intent != null) {
            CharSequence titleText = intent.getCharSequenceExtra(
            CharSequence titleText = intent.getCharSequenceExtra(
                    ConfirmDeviceCredentialBaseFragment.TITLE_TEXT);
                    ConfirmDeviceCredentialBaseFragment.TITLE_TEXT);
            if (titleText == null || suplementalText == null) {
            if (titleText == null || supplementalText == null) {
                return;
                return;
            }
            }
            String accessibilityTitle =
            String accessibilityTitle =
                    new StringBuilder(titleText).append(",").append(suplementalText).toString();
                    new StringBuilder(titleText).append(",").append(supplementalText).toString();
            getActivity().setTitle(Utils.createAccessibleSequence(titleText, accessibilityTitle));
            getActivity().setTitle(Utils.createAccessibleSequence(titleText, accessibilityTitle));
        }
        }
    }
    }