소스 검색

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