summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAbstractTransport.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLAbstractTransport.m')
-rw-r--r--SmartDeviceLink/SDLAbstractTransport.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLAbstractTransport.m b/SmartDeviceLink/SDLAbstractTransport.m
index 6d7437748..4f2657bd2 100644
--- a/SmartDeviceLink/SDLAbstractTransport.m
+++ b/SmartDeviceLink/SDLAbstractTransport.m
@@ -2,6 +2,8 @@
#import "SDLAbstractTransport.h"
+NS_ASSUME_NONNULL_BEGIN
+
@implementation SDLAbstractTransport
- (instancetype)init {
@@ -22,13 +24,11 @@
[self doesNotRecognizeSelector:_cmd];
}
-- (void)dispose {
- [self doesNotRecognizeSelector:_cmd];
-}
-
- (double)retryDelay {
[self doesNotRecognizeSelector:_cmd];
return 0.0;
}
@end
+
+NS_ASSUME_NONNULL_END