File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class KeychainWrapper {
68
68
return status == errSecSuccess
69
69
}
70
70
71
- private let serviceName : String
71
+ // MARK: - PRIVATE/INTERNAL
72
72
73
73
private func setupKeychainQueryDictionary( forKey key: String ) -> [ String : Any ] {
74
74
// Setup default access as generic password (rather than a certificate, internet password, etc)
@@ -89,8 +89,6 @@ class KeychainWrapper {
89
89
return keychainQueryDictionary
90
90
}
91
91
92
- // MARK: - PRIVATE/INTERNAL
93
-
94
92
private func update( _ value: Data , forKey key: String ) -> Bool {
95
93
let keychainQueryDictionary : [ String : Any ] = setupKeychainQueryDictionary ( forKey: key)
96
94
let updateDictionary = [ SecValueData: value]
@@ -101,6 +99,7 @@ class KeychainWrapper {
101
99
return status == errSecSuccess
102
100
}
103
101
102
+ private let serviceName : String
104
103
private let SecValueData = kSecValueData as String
105
104
private let SecAttrAccessible : String = kSecAttrAccessible as String
106
105
private let SecAttrAccessibleWhenUnlocked = kSecAttrAccessibleWhenUnlocked
You can’t perform that action at this time.
0 commit comments