Remove print statements

This commit is contained in:
Emre Kucukayvaz
2015-12-10 10:47:03 +01:00
parent 2459d0c2ff
commit 96d1958632
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -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
}
}
-1
View File
@@ -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
}
}