summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLIAPDataSession.m
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2019-04-24 10:56:00 -0400
committerNicoleYarroch <nicole@livio.io>2019-04-24 10:56:00 -0400
commitbd0058e82e814388c70f6b8a2f677b62cccf81cd (patch)
tree89c48d34298aebf397c265b3dbd2e9a8668abd3b /SmartDeviceLink/SDLIAPDataSession.m
parentc90704d514f5805ccf58a7a6f06907b04465137c (diff)
downloadsdl_ios-bd0058e82e814388c70f6b8a2f677b62cccf81cd.tar.gz
Finished up SDLIAPDataSession test cases
Diffstat (limited to 'SmartDeviceLink/SDLIAPDataSession.m')
-rw-r--r--SmartDeviceLink/SDLIAPDataSession.m15
1 files changed, 2 insertions, 13 deletions
diff --git a/SmartDeviceLink/SDLIAPDataSession.m b/SmartDeviceLink/SDLIAPDataSession.m
index 0b70d9edf..0009cbde9 100644
--- a/SmartDeviceLink/SDLIAPDataSession.m
+++ b/SmartDeviceLink/SDLIAPDataSession.m
@@ -25,19 +25,8 @@ NS_ASSUME_NONNULL_BEGIN
@implementation SDLIAPDataSession
-- (instancetype)init {
- SDLLogV(@"SDLIAPDataSession Init");
- self = [super init];
- if (!self) {
- return nil;
- }
-
- _session = nil;
-
- return self;
-}
-
- (instancetype)initWithSession:(nullable SDLIAPSession *)session retrySessionCompletionHandler:(SDLIAPDataSessionRetryCompletionHandler)retrySessionHandler dataReceivedCompletionHandler:(SDLIAPDataSessionDataReceivedHandler)dataReceivedHandler {
+ SDLLogV(@"SDLIAPDataSession init");
self = [super init];
if (!self) {
@@ -163,7 +152,7 @@ NS_ASSUME_NONNULL_BEGIN
#pragma mark - Lifecycle Destruction
- (void)dealloc {
- SDLLogV(@"SDLIAPDataSession Dealloc");
+ SDLLogV(@"SDLIAPDataSession dealloc");
_session = nil;
}