Skip to content

Commit

Permalink
Companion object replaced with object properties with value
Browse files Browse the repository at this point in the history
  • Loading branch information
DhruviChotai committed May 10, 2024
1 parent 36a79bb commit 75c3968
Showing 1 changed file with 8 additions and 13 deletions.
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"
}

0 comments on commit 75c3968

Please sign in to comment.