Fix build

Bug: 27709695
Change-Id: I2020a33aa0a305e025d7d004df4b23838bb42992
This commit is contained in:
Julia Reynolds
2016-03-17 13:58:15 -04:00
parent 8cedc7cae0
commit 40a82187c5

View File

@@ -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));
}
}