Improve variable naming

This commit is contained in:
ligi 2020-02-16 09:47:01 +01:00
parent ec80dced3d
commit 1da68a5706
No known key found for this signature in database
GPG key ID: 8E81894010ABF23D

View file

@ -34,13 +34,13 @@ open class App : Application() {
}
open fun createKodein() = Kodein.Module {
val build = Moshi.Builder()
val moshi = Moshi.Builder()
.add(ZonedTimeAdapter())
.add(ColorAdapter())
.build()
bind<PassStore>() with singleton { AndroidFileSystemPassStore(this@App, instance(), build, instance()) }
bind<PassStore>() with singleton { AndroidFileSystemPassStore(this@App, instance(), moshi, instance()) }
bind<Settings>() with singleton { AndroidSettings(this@App) }
bind<EventBus>() with singleton { EventBus.getDefault() }
}