summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLControlFramePayloadRPCStartService.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-09-08 10:03:50 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-09-08 10:03:50 -0400
commit0f921593a2d5456b91f89a1262ddcc1727f1c48c (patch)
tree4f0c6cfc6ac44457a0859851d900529ca289312c /SmartDeviceLink/SDLControlFramePayloadRPCStartService.h
parentb29a226cb4511d4c3a5943d4c6d14935eae4473e (diff)
downloadsdl_ios-0f921593a2d5456b91f89a1262ddcc1727f1c48c.tar.gz
Fix some constructed payloads having initializers with incorrect nullability
* Add SMM tests for video start service
Diffstat (limited to 'SmartDeviceLink/SDLControlFramePayloadRPCStartService.h')
-rw-r--r--SmartDeviceLink/SDLControlFramePayloadRPCStartService.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLControlFramePayloadRPCStartService.h b/SmartDeviceLink/SDLControlFramePayloadRPCStartService.h
index af3d97a12..2a1f7d674 100644
--- a/SmartDeviceLink/SDLControlFramePayloadRPCStartService.h
+++ b/SmartDeviceLink/SDLControlFramePayloadRPCStartService.h
@@ -17,7 +17,7 @@ NS_ASSUME_NONNULL_BEGIN
/// The max version of protocol version supported by client requesting service to start. Must be in the format "Major.Minor.Patch"
@property (copy, nonatomic, readonly, nullable) NSString *protocolVersion;
-- (instancetype)initWithVersion:(NSString *)stringVersion;
+- (instancetype)initWithVersion:(nullable NSString *)stringVersion;
@end