Skip to content

Commit

Permalink
Removed print statement from UserDefaults getter (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilijapuaca authored and ArtSabintsev committed Nov 9, 2018
1 parent 8686a39 commit 608329e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Sources/Extensions/SirenUserDefaultsExtension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ private enum SirenKeys: String {
extension UserDefaults {
static var shouldPerformVersionCheckOnSubsequentLaunch: Bool {
get {
print(#function, standard.bool(forKey: SirenKeys.PerformVersionCheckOnSubsequentLaunch.rawValue))
return standard.bool(forKey: SirenKeys.PerformVersionCheckOnSubsequentLaunch.rawValue)
} set {
standard.set(newValue, forKey: SirenKeys.PerformVersionCheckOnSubsequentLaunch.rawValue)
Expand Down

0 comments on commit 608329e

Please sign in to comment.