1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00

Remove unused functions

This commit is contained in:
Tae Won Ha 2017-05-02 18:57:49 +02:00
parent 4d7cf8accc
commit 06f7fa9aeb
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -5,9 +5,6 @@
import Foundation
func call(_ closure: @autoclosure () -> Void, when condition: Bool) { if condition { closure() } }
func call(_ closure: @autoclosure () -> Void, whenNot condition: Bool) { if !condition { closure() } }
extension String {
func without(prefix: String) -> String {