File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ final class SessionManager {
6666 // Delete any existing item first
6767 let deleteQuery : [ String : Any ] = [
6868 kSecClass as String : kSecClassGenericPassword,
69- kSecAttrService as String : Self . keychainService,
70- kSecAttrAccount as String : Self . keychainAccount
69+ kSecAttrService as String : keychainService,
70+ kSecAttrAccount as String : keychainAccount
7171 ]
7272 SecItemDelete ( deleteQuery as CFDictionary )
7373
@@ -85,8 +85,8 @@ final class SessionManager {
8585 func clearKeychain( ) {
8686 let query : [ String : Any ] = [
8787 kSecClass as String : kSecClassGenericPassword,
88- kSecAttrService as String : Self . keychainService,
89- kSecAttrAccount as String : Self . keychainAccount
88+ kSecAttrService as String : keychainService,
89+ kSecAttrAccount as String : keychainAccount
9090 ]
9191 SecItemDelete ( query as CFDictionary )
9292 }
You can’t perform that action at this time.
0 commit comments