Add super call to onCreateView

Bug: 392487897
Test: Ran LockscreenWithOverSixDigitPIN with and without this change
Flag: EXEMPT small bug fix
Change-Id: Ieaba6222f9751d4e87040a5cb59d0364fe153700
This commit is contained in:
Justin Weir
2025-02-04 16:02:05 -05:00
parent ec58402c03
commit bd5eefb017

View File

@@ -112,6 +112,7 @@ public class RedactionInterstitial extends SettingsActivity {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
super.onCreateView(inflater, container, savedInstanceState);
return inflater.inflate(R.layout.redaction_interstitial, container, false);
}