From daf0f0b22dab4fdda45eb9a8df75c5be26552240 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 11 Apr 2018 18:07:54 -0400 Subject: [PATCH] Fix incomplete asserts. --- .../attachments/SharingThreadPickerViewController.m | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/SignalMessaging/attachments/SharingThreadPickerViewController.m b/SignalMessaging/attachments/SharingThreadPickerViewController.m index 4ed8e5ad8..05aa26c63 100644 --- a/SignalMessaging/attachments/SharingThreadPickerViewController.m +++ b/SignalMessaging/attachments/SharingThreadPickerViewController.m @@ -79,10 +79,9 @@ typedef void (^SendMessageBlock)(SendCompletionBlock completion); - (nullable UIView *)createHeaderWithSearchBar:(UISearchBar *)searchBar { - OWSAssert(searchBar) + OWSAssert(searchBar); - const CGFloat contentVMargin - = 0; + const CGFloat contentVMargin = 0; UIView *header = [UIView new]; header.backgroundColor = [UIColor whiteColor];