PasswordRepository: Refactor getRepositoryDirectory to be non-nullable

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-11-04 18:59:49 +05:30
parent a409cae2a8
commit 077e67d8e3
No known key found for this signature in database
GPG key ID: C2E74282C2133D62

View file

@ -138,20 +138,14 @@ open class PasswordRepository protected constructor() {
}
@JvmStatic
fun getRepositoryDirectory(context: Context): File? {
var dir: File? = null
fun getRepositoryDirectory(context: Context): File {
val settings = PreferenceManager.getDefaultSharedPreferences(context.applicationContext)
if (settings.getBoolean("git_external", false)) {
return if (settings.getBoolean("git_external", false)) {
val externalRepo = settings.getString("git_external_repo", null)
if (externalRepo != null) {
dir = File(externalRepo)
}
File(requireNotNull(externalRepo))
} else {
dir = File(context.filesDir.toString() + "/store")
File(context.filesDir.toString() + "/store")
}
return dir
}
@JvmStatic
@ -159,10 +153,6 @@ open class PasswordRepository protected constructor() {
val dir = getRepositoryDirectory(context)
val settings = PreferenceManager.getDefaultSharedPreferences(context.applicationContext)
if (dir == null) {
return null
}
// uninitialize the repo if the dir does not exist or is absolutely empty
if (!dir.exists() || !dir.isDirectory || dir.listFiles()!!.isEmpty()) {
settings.edit().putBoolean("repository_initialized", false).apply()