Browse Source

EditController: Remove unnecessary parameter

Soomin Lee 6 years ago
parent
commit
e2ad611306
1 changed files with 1 additions and 1 deletions
  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()
     }
 }