From 06bf9149d6042a2658620e656141013b52a247c1 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 18 Jan 2022 09:47:41 -0500 Subject: [PATCH] fix(addressbook): remove debugging output --- UI/Contacts/UIxContactFoldersView.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/UI/Contacts/UIxContactFoldersView.m b/UI/Contacts/UIxContactFoldersView.m index eed15a7ea..9fd14bcd5 100644 --- a/UI/Contacts/UIxContactFoldersView.m +++ b/UI/Contacts/UIxContactFoldersView.m @@ -190,7 +190,6 @@ Class SOGoContactSourceFolderK, SOGoGCSFolderK; else [sortedFolders addObject: folder]; } - NSLog(@"sortedFolders = %@", sortedFolders); for (i = 0; i < max; i++) { folder = [sortedFolders objectAtIndex: i]; @@ -242,7 +241,7 @@ Class SOGoContactSourceFolderK, SOGoGCSFolderK; { // Optionally return contacts from GCS address books first containerTypeDescriptor = [[NSSortDescriptor alloc] initWithKey: @"containerType" - ascending: priorityGcs?YES:NO]; + ascending: priorityGcs]; // Sort the contacts by display name commonNameDescriptor = [[NSSortDescriptor alloc] initWithKey: @"c_cn" ascending: YES];