瀏覽代碼

EditController: Remove unnecessary parameter

Soomin Lee 6 年之前
父節點
當前提交
e2ad611306
共有 1 個文件被更改,包括 1 次插入1 次删除
  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()
     }
 }