Skip to content

Commit b3e2bb9

Browse files
cleanup
1 parent 2d9de4e commit b3e2bb9

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Branch-SDK/Branch-SDK/Branch.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -517,9 +517,8 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
517517
#pragma mark - Pre-initialization support
518518

519519
/**
520-
When certain actions are required to complete prior to session initialization, call this method passing in dispatch_block_t,
521-
which contains session initialization, and an int, inidicating the number of seconds Branch should wait to invoke the
522-
passed in block.
520+
When certain actions are required to complete prior to session initialization, call this method passing in a dispatch_block_t
521+
object and an int, inidicating the number of seconds Branch should wait to invoke the passed in block.
523522
524523
@param initBlock dispatch_block_t object to be executed prior to session initialization
525524
@param waitTime An int inidicating the number of seconds Branch should wait before executing the passed in block

Branch-SDK/Branch-SDK/Branch.m

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,7 @@ @interface Branch() <BranchDeepLinkingControllerCompletionDelegate> {
119119
}
120120

121121
// This isolation queue protects branch initialization and ensures things are processed in order.
122-
@property (nonatomic, strong) dispatch_queue_t isolationQueue;
123-
// Delayed initialization block to be used when other tasks are required to complete before initializing
124-
@property (nonatomic, strong) dispatch_block_t preInitBlock;
122+
@property (nonatomic, strong, readwrite) dispatch_queue_t isolationQueue;
125123

126124
@property (strong, nonatomic) BNCServerInterface *serverInterface;
127125
@property (strong, nonatomic) BNCServerRequestQueue *requestQueue;

0 commit comments

Comments
 (0)