1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-29 16:56:40 +03:00

GH-383 Remove unnec' log msgs

This commit is contained in:
Tae Won Ha 2017-04-11 18:49:17 +02:00
parent d2eeed899f
commit ae68b6c99f
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -29,7 +29,6 @@ extension PrefService {
return
}
NSLog("Saving pref!")
defaults.setValue(pair.state.dict(), forKey: PrefService.compatibleVersion)
}
}
@ -39,7 +38,6 @@ extension PrefService {
typealias StateType = AppState
func apply(_ state: StateType) {
NSLog("Saving pref!")
defaults.setValue(state.dict(), forKey: PrefService.compatibleVersion)
}
}