For #357 - Removes unneeded if statement

This commit is contained in:
Jeff Boek 2019-02-15 15:45:14 -08:00
parent 007cefa281
commit d3c0aa20c1

View File

@ -124,8 +124,5 @@ class HistoryFragment : Fragment(), CoroutineScope, BackHandler {
}
}
override fun onBackPressed(): Boolean {
if ((historyComponent.uiView as HistoryUIView).onBackPressed()) { return true }
return false
}
override fun onBackPressed(): Boolean = (historyComponent.uiView as HistoryUIView).onBackPressed()
}