From 6dd1593e01ce9f70be189642d319a5cdaa680662 Mon Sep 17 00:00:00 2001 From: Boyko Mihail Date: Wed, 28 Apr 2021 16:47:27 +0300 Subject: [PATCH] feat: Remove unused code --- .../KeychainAccess/Keychain+Factory.swift | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 TIKeychainUtils/Sources/KeychainAccess/Keychain+Factory.swift diff --git a/TIKeychainUtils/Sources/KeychainAccess/Keychain+Factory.swift b/TIKeychainUtils/Sources/KeychainAccess/Keychain+Factory.swift deleted file mode 100644 index d22d80cd..00000000 --- a/TIKeychainUtils/Sources/KeychainAccess/Keychain+Factory.swift +++ /dev/null @@ -1,18 +0,0 @@ -import Foundation -import KeychainAccess - -extension Bundle { - var mirBundleId: String { - Bundle.main.bundleIdentifier ?? .empty - } -} - -extension Keychain { - static var mirKeychain: Keychain { - .init(service: Bundle.main.mirBundleId) - } -} - -private extension String { - static let empty = "" -}