aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2020-02-23 16:10:45 -0800
committerAllan Wang <me@allanwang.ca>2020-02-23 16:10:45 -0800
commit7b5bf87a3f5ce8f7fd3c95ed889076f4869f0310 (patch)
treeaac290e3cdd256b119e5f1865e08bda217b935aa /app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
parentc8b54fd10a08ed53eb7d21578a4fe990fe14e3bc (diff)
downloadfrost-7b5bf87a3f5ce8f7fd3c95ed889076f4869f0310.tar.gz
frost-7b5bf87a3f5ce8f7fd3c95ed889076f4869f0310.tar.bz2
frost-7b5bf87a3f5ce8f7fd3c95ed889076f4869f0310.zip
Remove koincomponent from activities and apply spotless
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt b/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
index effa8ad4..8a76c424 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
@@ -45,7 +45,7 @@ import org.koin.core.inject
* Created by Allan Wang on 2017-06-05.
*/
class AccountItem(val cookie: CookieEntity?) :
- KauIItem<AccountItem.ViewHolder>(R.layout.view_account, { ViewHolder(it) }, R.id.item_account) ,
+ KauIItem<AccountItem.ViewHolder>(R.layout.view_account, { ViewHolder(it) }, R.id.item_account),
KoinComponent {
private val prefs: Prefs by inject()