From 3cc638624ffa250b9ca8b83e9eb0880cda9b10c1 Mon Sep 17 00:00:00 2001 From: Danny Canter Date: Thu, 17 Jul 2025 09:37:59 -0700 Subject: [PATCH] KeychainHelper: Simplify lookup (#214) --- Sources/ContainerizationOCI/Client/KeychainHelper.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Sources/ContainerizationOCI/Client/KeychainHelper.swift b/Sources/ContainerizationOCI/Client/KeychainHelper.swift index e41f2c8c..ac314d49 100644 --- a/Sources/ContainerizationOCI/Client/KeychainHelper.swift +++ b/Sources/ContainerizationOCI/Client/KeychainHelper.swift @@ -30,9 +30,6 @@ public struct KeychainHelper: Sendable { let kq = KeychainQuery() do { - guard try kq.exists(id: self.id, host: domain) else { - throw Self.Error.keyNotFound - } guard let fetched = try kq.get(id: self.id, host: domain) else { throw Self.Error.keyNotFound }