fixup! treewide: Move lambda argument out of parentheses for livedata observeables

This commit is contained in:
Aayush Gupta
2023-05-03 21:25:20 +05:30
parent e4a7b14ce6
commit 88b3878afd
2 changed files with 4 additions and 4 deletions

View File

@@ -63,9 +63,9 @@ class AppSalesActivity : BaseActivity() {
attachRecycler()
attachToolbar()
VM.liveAppList.observe(this, {
VM.liveAppList.observe(this) {
updateController(it)
})
}
}
private fun attachToolbar() {

View File

@@ -71,9 +71,9 @@ class SearchSuggestionActivity : BaseActivity() {
attachToolbar()
VM.liveSearchSuggestions.observe(this, {
VM.liveSearchSuggestions.observe(this) {
updateController(it)
})
}
setupSearch()
}