Sfoglia il codice sorgente

EditController: Remove unnecessary parameter

Soomin Lee 6 anni fa
parent
commit
e2ad611306
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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()
     }
 }