remove a redundant constant

This commit is contained in:
tibbi 2018-01-24 22:58:29 +01:00
parent 0c7c5f22c9
commit 0dcc77cdc2
2 changed files with 10 additions and 11 deletions

View File

@ -1,14 +1,13 @@
package com.simplemobiletools.filemanager.helpers
val PATH = "path"
const val PATH = "path"
// shared preferences
val SHOW_HIDDEN = "show_hidden"
val HOME_FOLDER = "home_folder"
val FAVORITES = "favorites"
val SORT_ORDER = "sort_order"
val SORT_FOLDER_PREFIX = "sort_folder_"
val TEMPORARILY_SHOW_HIDDEN = "temporarily_show_hidden"
val IS_ROOT_AVAILABLE = "is_root_available"
val ENABLE_ROOT_ACCESS = "enable_root_access"
val LS_HAS_HARD_LINKS_COLUMN = "ls_has_hard_links_column"
const val SHOW_HIDDEN = "show_hidden"
const val HOME_FOLDER = "home_folder"
const val FAVORITES = "favorites"
const val SORT_ORDER = "sort_order"
const val SORT_FOLDER_PREFIX = "sort_folder_"
const val TEMPORARILY_SHOW_HIDDEN = "temporarily_show_hidden"
const val IS_ROOT_AVAILABLE = "is_root_available"
const val ENABLE_ROOT_ACCESS = "enable_root_access"

View File

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.0'
ext.kotlin_version = '1.2.21'
repositories {
jcenter()