Remove unusude useArchive property

This commit is contained in:
Ensar Sarajčić 2023-07-20 14:12:38 +02:00
parent b29d664dc4
commit 372dbaeaa4
1 changed files with 0 additions and 4 deletions

View File

@ -111,8 +111,4 @@ class Config(context: Context) : BaseConfig(context) {
var lastRecycleBinCheck: Long var lastRecycleBinCheck: Long
get() = prefs.getLong(LAST_RECYCLE_BIN_CHECK, 0L) get() = prefs.getLong(LAST_RECYCLE_BIN_CHECK, 0L)
set(lastRecycleBinCheck) = prefs.edit().putLong(LAST_RECYCLE_BIN_CHECK, lastRecycleBinCheck).apply() set(lastRecycleBinCheck) = prefs.edit().putLong(LAST_RECYCLE_BIN_CHECK, lastRecycleBinCheck).apply()
var useArchive: Boolean
get() = prefs.getBoolean(USE_ARCHIVE, false)
set(useArchive) = prefs.edit().putBoolean(USE_ARCHIVE, useArchive).apply()
} }