From 96d19586324311199d8aafed8b440c79d9624384 Mon Sep 17 00:00:00 2001 From: Emre Kucukayvaz Date: Thu, 10 Dec 2015 10:47:03 +0100 Subject: [PATCH] Remove print statements --- Source/Locksmith.swift | 2 -- Source/LocksmithSecurityClass.swift | 1 - 2 files changed, 3 deletions(-) diff --git a/Source/Locksmith.swift b/Source/Locksmith.swift index 33497c0..365e1fc 100644 --- a/Source/Locksmith.swift +++ b/Source/Locksmith.swift @@ -480,7 +480,6 @@ public extension ReadableSecureStorable where Self : GenericPasswordSecureStorab return nil } } catch { - print(error) return nil } } @@ -495,7 +494,6 @@ public extension ReadableSecureStorable where Self : InternetPasswordSecureStora return nil } } catch { - print(error) return nil } } diff --git a/Source/LocksmithSecurityClass.swift b/Source/LocksmithSecurityClass.swift index fd358e1..f3fb75b 100644 --- a/Source/LocksmithSecurityClass.swift +++ b/Source/LocksmithSecurityClass.swift @@ -18,7 +18,6 @@ public enum LocksmithSecurityClass: RawRepresentable { case String(kSecClassIdentity): self = Identity default: - print("SecurityClass: Invalid raw value provided. Defaulting to .GenericPassword") self = GenericPassword } }