removing an unused constant

This commit is contained in:
Tibor Kaputa 2021-10-03 22:45:12 +02:00 committed by GitHub
parent 60bbaf958c
commit b9f3191b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -103,8 +103,4 @@ class Config(context: Context) : BaseConfig(context) {
var checklistSortDirection: ChecklistSortDirection
get() = ChecklistSortDirection.valueOf(prefs.getString(CHECKLIST_SORT_DIRECTION, ChecklistSortDirection.ASCENDING.name)!!)
set(sortDirection) = prefs.edit().putString(CHECKLIST_SORT_DIRECTION, sortDirection.name).apply()
var checklistSeparateDoneFromUndone: Boolean
get() = prefs.getBoolean(CHECKLIST_SEPARATE_DONE_FROM_UNDONE, false)
set(separate) = prefs.edit().putBoolean(CHECKLIST_SEPARATE_DONE_FROM_UNDONE, separate).apply()
}