From 249ac3458a780862d66e8faeed17fda191fa8783 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Fri, 6 Mar 2020 01:05:20 -0800 Subject: [PATCH] Cleanup --- SecretKit/SmartCard/SmartCardStore.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SecretKit/SmartCard/SmartCardStore.swift b/SecretKit/SmartCard/SmartCardStore.swift index c5e7f02..2f7361a 100644 --- a/SecretKit/SmartCard/SmartCardStore.swift +++ b/SecretKit/SmartCard/SmartCardStore.swift @@ -77,8 +77,7 @@ extension SmartCard.Store { kSecReturnAttributes: true ] as CFDictionary var untyped: CFTypeRef? - let status = SecItemCopyMatching(attributes, &untyped) - print(status) + SecItemCopyMatching(attributes, &untyped) guard let typed = untyped as? [[CFString: Any]] else { return } let wrapped: [SmartCard.Secret] = typed.map { let name = $0[kSecAttrLabel] as? String ?? "Unnamed"