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

Commit 40a82187 authored by Julia Reynolds's avatar Julia Reynolds
Browse files

Fix build

Bug: 27709695
Change-Id: I2020a33aa0a305e025d7d004df4b23838bb42992
parent 8cedc7ca
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -137,11 +137,11 @@ public abstract class ConfirmDeviceCredentialBaseFragment extends InstrumentedFr
        if (intent != null) {
            CharSequence titleText = intent.getCharSequenceExtra(
                    ConfirmDeviceCredentialBaseFragment.TITLE_TEXT);
            if (titleText == null || suplementalText == null) {
            if (titleText == null || supplementalText == null) {
                return;
            }
            String accessibilityTitle =
                    new StringBuilder(titleText).append(",").append(suplementalText).toString();
                    new StringBuilder(titleText).append(",").append(supplementalText).toString();
            getActivity().setTitle(Utils.createAccessibleSequence(titleText, accessibilityTitle));
        }
    }