浏览代码

Reformat code

Signed-off-by: ZetaTom <70907959+ZetaTom@users.noreply.github.com>
ZetaTom 6 月之前
父节点
当前提交
d9550175e8

+ 7 - 4
app/src/main/java/com/nextcloud/ui/ChooseStorageLocationDialogFragment.kt

@@ -102,7 +102,8 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
             StorageType.EXTERNAL -> getString(R.string.storage_external_storage)
         }
 
-        val storagePath = storagePoints.firstOrNull { it.storageType == storageType && it.privacyType == privacyType }?.path
+        val storagePath =
+            storagePoints.firstOrNull { it.storageType == storageType && it.privacyType == privacyType }?.path
 
         return storagePath?.let {
             val file = File(it)
@@ -118,7 +119,8 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
     }
 
     private fun updateMediaIndexSwitch() {
-        val privacyTypes = storagePoints.filter { it.storageType == selectedStorageType }.map { it.privacyType }.distinct()
+        val privacyTypes =
+            storagePoints.filter { it.storageType == selectedStorageType }.map { it.privacyType }.distinct()
         binding.allowMediaIndexSwitch.isEnabled = privacyTypes.size > 1
         binding.allowMediaIndexSwitch.isChecked = privacyTypes.contains(PrivacyType.PUBLIC)
     }
@@ -142,7 +144,8 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
     }
 
     private fun notifyResult() {
-        val newPath = storagePoints.first { it.storageType == selectedStorageType && it.privacyType == selectedPrivacyType }
+        val newPath =
+            storagePoints.first { it.storageType == selectedStorageType && it.privacyType == selectedPrivacyType }
 
         val resultBundle = Bundle().apply {
             putString(KEY_RESULT_STORAGE_LOCATION, newPath.path)
@@ -161,4 +164,4 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
         @JvmStatic
         val TAG: String = Companion::class.java.simpleName
     }
-}
+}

+ 2 - 2
app/src/main/java/com/owncloud/android/ui/activity/ChooseStorageLocationActivity.kt

@@ -26,7 +26,7 @@ class ChooseStorageLocationActivity : AppCompatActivity() {
                 Intent().putExtra(
                     KEY_RESULT_STORAGE_LOCATION,
                     result.getString(KEY_RESULT_STORAGE_LOCATION)
-                    )
+                )
             )
         }
         chooseStorageLocationDialogFragment.show(supportFragmentManager, "choose_storage_location")
@@ -35,4 +35,4 @@ class ChooseStorageLocationActivity : AppCompatActivity() {
     companion object {
         const val KEY_RESULT_STORAGE_LOCATION = ChooseStorageLocationDialogFragment.KEY_RESULT_STORAGE_LOCATION
     }
-}
+}