-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Companion object replaced with object properties with value
- Loading branch information
1 parent
36a79bb
commit 75c3968
Showing
1 changed file
with
8 additions
and
13 deletions.
There are no files selected for viewing
21 changes: 8 additions & 13 deletions
21
smart-storage/src/main/java/com/ss/smart_storage/util/SmartDirectory.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
package com.ss.smart_storage.util | ||
|
||
|
||
class SmartDirectory{ | ||
companion object { | ||
const val INTERNAL: String = "Internal" | ||
const val SCOPED_STORAGE : String = "Scoped_Storage" | ||
const val CUSTOM : String = "Custom" | ||
const val DOWNLOADS: String = "Download" | ||
const val DOCUMENTS: String = "Documents" | ||
const val EXTERNAL_PUBLIC = "External_Public" | ||
} | ||
} | ||
|
||
|
||
object SmartDirectory{ | ||
const val INTERNAL: String = "Internal" | ||
const val SCOPED_STORAGE : String = "Scoped_Storage" | ||
const val CUSTOM : String = "Custom" | ||
const val DOWNLOADS: String = "Download" | ||
const val DOCUMENTS: String = "Documents" | ||
const val EXTERNAL_PUBLIC = "External_Public" | ||
} |