Browse Source

code cleaning

nayooti 5 years ago
parent
commit
e2648be416
1 changed files with 1 additions and 2 deletions
  1. 1 2
      deltachat-ios/Handler/DeviceContactsHandler.swift

+ 1 - 2
deltachat-ios/Handler/DeviceContactsHandler.swift

@@ -27,15 +27,14 @@ class DeviceContactsHandler {
         }
     }
 
-
     private func fetchContactsWithEmailFromDevice(completionHandler: @escaping ([CNContact])->Void) {
 
         DispatchQueue.global(qos: .background).async {
             let keys = [CNContactFamilyNameKey, CNContactGivenNameKey, CNContactEmailAddressesKey]
 
             var fetchedContacts: [CNContact] = []
-
             var allContainers: [CNContainer] = []
+
             do {
                 allContainers = try self.store.containers(matching: nil)
             } catch {