Fixes error

This commit is contained in:
ericdecanini 2022-10-09 14:55:43 -04:00
parent c94884b9d3
commit 618cf7ac0e
1 changed files with 0 additions and 1 deletions

View File

@ -31,7 +31,6 @@ interface LocaleProvider {
class DefaultLocaleProvider @Inject constructor(private val resources: Resources) : LocaleProvider { class DefaultLocaleProvider @Inject constructor(private val resources: Resources) : LocaleProvider {
override fun current(): Locale { override fun current(): Locale {
""
return ConfigurationCompat.getLocales(resources.configuration).get(0) ?: Locale.getDefault() return ConfigurationCompat.getLocales(resources.configuration).get(0) ?: Locale.getDefault()
} }
} }