Skip to content

Commit

Permalink
removes unused stored property for a semaphore
Browse files Browse the repository at this point in the history
  • Loading branch information
Brennan Stehling committed Jul 12, 2022
1 parent 233a4ad commit 7c1b4c5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions AWSIoT/Internal/AWSIoTMQTTClient.m
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ @interface AWSIoTMQTTClient() <AWSSRWebSocketDelegate, NSStreamDelegate, AWSMQTT

@property (atomic, assign) BOOL runLoopShouldContinue;

@property (strong,atomic) dispatch_semaphore_t timerSemaphore;
@property (strong,atomic) dispatch_queue_t timerQueue;

@end
Expand Down Expand Up @@ -107,7 +106,6 @@ - (instancetype)init {
_webSocket = nil;
_userDidIssueConnect = NO;
_userDidIssueDisconnect = NO;
_timerSemaphore = dispatch_semaphore_create(1);
_timerQueue = dispatch_queue_create("com.amazon.aws.iot.timer-queue", DISPATCH_QUEUE_SERIAL);
_streamsThread = nil;
}
Expand Down

0 comments on commit 7c1b4c5

Please sign in to comment.