浏览代码

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()
     }
 }