...Suppress MissingSuperCall warnings on onBackPressed()...

PiperOrigin-RevId: 520709134
(cherry picked from commit 5af28a980d657cf1038be34f1d7939104e5e721b)
This commit is contained in:
Googler 2023-03-30 20:14:50 +01:00 committed by Rohit Singh
parent 10342507f7
commit 3daaad7acd

View File

@ -83,6 +83,7 @@ class MainActivity : AppCompatActivity() {
return super.onOptionsItemSelected(item) return super.onOptionsItemSelected(item)
} }
@SuppressWarnings("MissingSuperCall")
override fun onBackPressed() { override fun onBackPressed() {
popPathStack() popPathStack()
} }