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

PiperOrigin-RevId: 520709134
This commit is contained in:
Googler 2023-03-30 20:14:50 +01:00 committed by Marc Baechinger
parent d7010da614
commit 5af28a980d

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()
} }