Skip to content

Commit

Permalink
Removing unnecessary nullable attribute over API class properties
Browse files Browse the repository at this point in the history
  • Loading branch information
soner-yuksel committed Sep 14, 2021
1 parent a936442 commit 1141a06
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 1141a06

Please sign in to comment.