Separated Two lines

This commit is contained in:
s-ayush2903 2020-07-20 00:58:02 +05:30
parent 522ea6b494
commit e2bc5b8352
No known key found for this signature in database
GPG Key ID: B4341DD08B2371CB

View File

@ -28,7 +28,6 @@ import org.kiwix.kiwixmobile.core.CoreApp.Companion.instance
import org.kiwix.kiwixmobile.core.NightModeConfig
import org.kiwix.kiwixmobile.core.NightModeConfig.Mode.Companion.from
import java.io.File
import java.util.HashSet
import java.util.Locale
import javax.inject.Inject
import javax.inject.Singleton
@ -100,7 +99,8 @@ class SharedPreferenceUtil @Inject constructor(context: Context?) {
sharedPreferences.edit().putString(PREF_STORAGE_TITLE, storageTitle).apply()
fun putPrefStorage(storage: String) {
sharedPreferences.edit().putString(PREF_STORAGE, storage).apply(); prefStorages.onNext(storage)
sharedPreferences.edit().putString(PREF_STORAGE, storage).apply()
prefStorages.onNext(storage)
}
fun putPrefFullScreen(fullScreen: Boolean) =