Skip to content

Commit

Permalink
[IOS] Fix: Removing unnecessary nullable attribute over API class pro…
Browse files Browse the repository at this point in the history
…perties
  • Loading branch information
soner-yuksel authored Sep 15, 2021
2 parents 119585d + 1141a06 commit c2c022b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ios/app/brave_core_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c2c022b

Please sign in to comment.