summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-07-27 09:43:20 -0400
committerGitHub <noreply@github.com>2017-07-27 09:43:20 -0400
commit1a0d6e94318374f63db3cc61e918b048b62595df (patch)
tree49eab18246a65ff5ad35355f2624dfab8813f86c
parent2b67376073bf5000466dabab6fd230a245e0c970 (diff)
downloadsdl_ios-1a0d6e94318374f63db3cc61e918b048b62595df.tar.gz
Remove some extra blank LOC
-rw-r--r--SmartDeviceLink/SDLIAPTransport.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLIAPTransport.m b/SmartDeviceLink/SDLIAPTransport.m
index 26dd0798b..63ba7400a 100644
--- a/SmartDeviceLink/SDLIAPTransport.m
+++ b/SmartDeviceLink/SDLIAPTransport.m
@@ -389,13 +389,11 @@ int const streamOpenTimeoutSeconds = 2;
#pragma mark Data Stream
- (SDLStreamEndHandler)sdl_dataStreamEndedHandler {
-
__weak typeof(self) weakSelf = self;
return ^(NSStream *stream) {
__strong typeof(weakSelf) strongSelf = weakSelf;
-
[SDLDebugTool logInfo:@"Data Stream Event End"];
if (strongSelf.session != nil) {
// The handler will be called on the IO thread, but the session stop method must be called on the main thread and we need to wait for the session to stop before nil'ing it out. To do this, we use dispatch_sync() on the main thread.