summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-12 16:05:18 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-12 16:05:18 -0500
commita825a883098852e3dfad8639f48e49dd8fcac75b (patch)
tree1cb0a90bb40ab14eb85917a2b8c6c7f89bb7ef5d
parent549e4d44fcf6abfb66d60603f69cba754a7810ad (diff)
downloadsdl_ios-a825a883098852e3dfad8639f48e49dd8fcac75b.tar.gz
Fix GetWayPoints nullability
-rw-r--r--SmartDeviceLink-iOS.xcodeproj/project.pbxproj8
-rw-r--r--SmartDeviceLink/SDLGetWaypoints.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/SmartDeviceLink-iOS.xcodeproj/project.pbxproj b/SmartDeviceLink-iOS.xcodeproj/project.pbxproj
index 18763a182..0bf4ba0f0 100644
--- a/SmartDeviceLink-iOS.xcodeproj/project.pbxproj
+++ b/SmartDeviceLink-iOS.xcodeproj/project.pbxproj
@@ -2667,6 +2667,8 @@
5D61FB771A84238B00846EE7 /* SDLResetGlobalProperties.m */,
5D61FB8E1A84238B00846EE7 /* SDLScrollableMessage.h */,
5D61FB8F1A84238B00846EE7 /* SDLScrollableMessage.m */,
+ 5DCF76F31ACDBAD300BB647B /* SDLSendLocation.h */,
+ 5DCF76F41ACDBAD300BB647B /* SDLSendLocation.m */,
5D61FB921A84238B00846EE7 /* SDLSetAppIcon.h */,
5D61FB931A84238B00846EE7 /* SDLSetAppIcon.m */,
5D61FB961A84238B00846EE7 /* SDLSetDisplayLayout.h */,
@@ -2703,8 +2705,6 @@
DA9F7E921DCC04E400ACAE48 /* SDLUnsubscribeWaypoints.m */,
5D61FC041A84238C00846EE7 /* SDLUpdateTurnList.h */,
5D61FC051A84238C00846EE7 /* SDLUpdateTurnList.m */,
- 5DCF76F31ACDBAD300BB647B /* SDLSendLocation.h */,
- 5DCF76F41ACDBAD300BB647B /* SDLSendLocation.m */,
);
name = Requests;
sourceTree = "<group>";
@@ -2764,6 +2764,8 @@
5D61FB791A84238B00846EE7 /* SDLResetGlobalPropertiesResponse.m */,
5D61FB901A84238B00846EE7 /* SDLScrollableMessageResponse.h */,
5D61FB911A84238B00846EE7 /* SDLScrollableMessageResponse.m */,
+ 5DCF76F71ACDD7CD00BB647B /* SDLSendLocationResponse.h */,
+ 5DCF76F81ACDD7CD00BB647B /* SDLSendLocationResponse.m */,
5D61FB941A84238B00846EE7 /* SDLSetAppIconResponse.h */,
5D61FB951A84238B00846EE7 /* SDLSetAppIconResponse.m */,
5D61FB981A84238B00846EE7 /* SDLSetDisplayLayoutResponse.h */,
@@ -2800,8 +2802,6 @@
DA9F7E8E1DCC04C000ACAE48 /* SDLUnsubscribeWaypointsResponse.m */,
5D61FC061A84238C00846EE7 /* SDLUpdateTurnListResponse.h */,
5D61FC071A84238C00846EE7 /* SDLUpdateTurnListResponse.m */,
- 5DCF76F71ACDD7CD00BB647B /* SDLSendLocationResponse.h */,
- 5DCF76F81ACDD7CD00BB647B /* SDLSendLocationResponse.m */,
);
name = Responses;
sourceTree = "<group>";
diff --git a/SmartDeviceLink/SDLGetWaypoints.h b/SmartDeviceLink/SDLGetWaypoints.h
index ec114d1cb..b0aaf96c5 100644
--- a/SmartDeviceLink/SDLGetWaypoints.h
+++ b/SmartDeviceLink/SDLGetWaypoints.h
@@ -17,7 +17,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* Required
*/
-@property (strong, nonatomic) SDLWaypointType waypointType;
+@property (nullable, strong, nonatomic) SDLWaypointType waypointType;
@end