Parcourir la source

EditController: Remove unnecessary parameter

Soomin Lee il y a 6 ans
Parent
commit
e2ad611306
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Sources/VLCEditController.swift

+ 1 - 1
Sources/VLCEditController.swift

@@ -43,7 +43,7 @@ class EditController: UIViewController {
     }
 
     func resetSelections() {
-        selectedCellIndexPaths.removeAll(keepingCapacity: false)
+        selectedCellIndexPaths.removeAll()
     }
 }