From bd5eefb017c5a22246b85a435123490e906e6235 Mon Sep 17 00:00:00 2001 From: Justin Weir Date: Tue, 4 Feb 2025 16:02:05 -0500 Subject: [PATCH] Add super call to onCreateView Bug: 392487897 Test: Ran LockscreenWithOverSixDigitPIN with and without this change Flag: EXEMPT small bug fix Change-Id: Ieaba6222f9751d4e87040a5cb59d0364fe153700 --- src/com/android/settings/notification/RedactionInterstitial.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/android/settings/notification/RedactionInterstitial.java b/src/com/android/settings/notification/RedactionInterstitial.java index 83d5a016867..92c9e2e0405 100644 --- a/src/com/android/settings/notification/RedactionInterstitial.java +++ b/src/com/android/settings/notification/RedactionInterstitial.java @@ -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); }