Explorar el Código

EditController: Remove unnecessary parameter

Soomin Lee hace 6 años
padre
commit
e2ad611306
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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()
     }
 }