summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLIAPSession.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLIAPSession.m')
-rw-r--r--SmartDeviceLink/SDLIAPSession.m18
1 files changed, 3 insertions, 15 deletions
diff --git a/SmartDeviceLink/SDLIAPSession.m b/SmartDeviceLink/SDLIAPSession.m
index a2f2ec73f..7bbc96fa1 100644
--- a/SmartDeviceLink/SDLIAPSession.m
+++ b/SmartDeviceLink/SDLIAPSession.m
@@ -7,6 +7,7 @@
#import "SDLStreamDelegate.h"
#import "SDLTimer.h"
+NS_ASSUME_NONNULL_BEGIN
@interface SDLIAPSession ()
@@ -26,11 +27,8 @@
self = [super init];
if (self) {
- _delegate = nil;
_accessory = accessory;
_protocol = protocol;
- _streamDelegate = nil;
- _easession = nil;
_isInputStreamOpen = NO;
_isOutputStreamOpen = NO;
}
@@ -141,16 +139,6 @@
};
}
-
-#pragma mark - Lifecycle Destruction
-
-- (void)dealloc {
- self.delegate = nil;
- self.accessory = nil;
- self.protocol = nil;
- self.streamDelegate = nil;
- self.easession = nil;
- [SDLDebugTool logInfo:@"SDLIAPSession Dealloc"];
-}
-
@end
+
+NS_ASSUME_NONNULL_END