diff options
Diffstat (limited to 'SmartDeviceLink/SDLAbstractProtocol.m')
-rw-r--r-- | SmartDeviceLink/SDLAbstractProtocol.m | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLAbstractProtocol.m b/SmartDeviceLink/SDLAbstractProtocol.m index 37d18bfef..09b882b66 100644 --- a/SmartDeviceLink/SDLAbstractProtocol.m +++ b/SmartDeviceLink/SDLAbstractProtocol.m @@ -4,6 +4,7 @@ #import "SDLRPCMessage.h" +NS_ASSUME_NONNULL_BEGIN @implementation SDLAbstractProtocol @@ -69,10 +70,6 @@ [self doesNotRecognizeSelector:_cmd]; } -- (void)dispose { - [self doesNotRecognizeSelector:_cmd]; -} - #pragma - SDLTransportListener Implementation - (void)onTransportConnected { @@ -96,3 +93,5 @@ } @end + +NS_ASSUME_NONNULL_END |