File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -951,9 +951,9 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
951951
952952#pragma mark - Query methods
953953
954- - (void )requestCrossPlatformIdDataWithCompletion : (void (^) (BranchCrossPlatformID *cpid))completion ;
954+ - (void )requestCrossPlatformIdDataWithCompletion : (void (^) (BranchCrossPlatformID * _Nullable cpid))completion ;
955955
956- - (void )requestLastTouchAttributedDataWithCompletion : (void (^) (NSDictionary *ltad, NSNumber *attributionWindow ))completion ;
956+ - (void )requestLastTouchAttributedDataWithCompletion : (void (^) (BranchLastAttributedTouchData * _Nullable ltad ))completion ;
957957
958958#pragma mark - Short Url Sync methods
959959
Original file line number Diff line number Diff line change @@ -1348,14 +1348,12 @@ - (BranchLinkProperties *)getLatestReferringBranchLinkProperties {
13481348
13491349#pragma mark - Query methods
13501350
1351- - (void )requestCrossPlatformIdDataWithCompletion : (void (^) (BranchCrossPlatformID *cpid))completion {
1351+ - (void )requestCrossPlatformIdDataWithCompletion : (void (^) (BranchCrossPlatformID * _Nullable cpid))completion {
13521352 [BranchCrossPlatformID requestCrossPlatformIdData: self .serverInterface key: self .class.branchKey completion: completion];
13531353}
13541354
1355- - (void )requestLastTouchAttributedDataWithCompletion : (void (^) (NSDictionary *ltad, NSNumber *attributionWindow))completion {
1356- [BranchLastAttributedTouchData requestLastTouchAttributedData: self .serverInterface key: self .class.branchKey completion: ^(BranchLastAttributedTouchData * _Nonnull latd) {
1357-
1358- }];
1355+ - (void )requestLastTouchAttributedDataWithCompletion : (void (^) (BranchLastAttributedTouchData * _Nullable ltad))completion {
1356+ [BranchLastAttributedTouchData requestLastTouchAttributedData: self .serverInterface key: self .class.branchKey completion: completion];
13591357}
13601358
13611359#pragma mark - ShortUrl methods
You can’t perform that action at this time.
0 commit comments