From 1141a0624920b9dbeff25b8639fa76e9522032fb Mon Sep 17 00:00:00 2001 From: Soner Yuksel Date: Tue, 14 Sep 2021 12:42:11 -0400 Subject: [PATCH] Removing unnecessary nullable attribute over API class properties --- ios/app/brave_core_main.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ios/app/brave_core_main.h b/ios/app/brave_core_main.h index b8a776ca8542..664af07e32bb 100644 --- a/ios/app/brave_core_main.h +++ b/ios/app/brave_core_main.h @@ -26,12 +26,11 @@ typedef bool (^BraveCoreLogHandler)(int severity, OBJC_EXPORT @interface BraveCoreMain : NSObject -@property(nullable, nonatomic, readonly) BraveBookmarksAPI* bookmarksAPI; +@property(nonatomic, readonly) BraveBookmarksAPI* bookmarksAPI; -@property(nullable, nonatomic, readonly) BraveHistoryAPI* historyAPI; +@property(nonatomic, readonly) BraveHistoryAPI* historyAPI; -@property(nullable, nonatomic, readonly) - BraveSyncProfileServiceIOS* syncProfileService; +@property(nonatomic, readonly) BraveSyncProfileServiceIOS* syncProfileService; + (void)setLogHandler:(nullable BraveCoreLogHandler)logHandler;