summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVehicleType.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
commit55850b04dca4b6d11e3a7fcac42d1e1708a36bdf (patch)
treed9f444d1fc9ddd1faf28647ff171202f86df1a32 /SmartDeviceLink/SDLVehicleType.h
parentf44eba087b5f26897a6d126eedc691299f369782 (diff)
downloadsdl_ios-55850b04dca4b6d11e3a7fcac42d1e1708a36bdf.tar.gz
Make properties nonatomic
Diffstat (limited to 'SmartDeviceLink/SDLVehicleType.h')
-rw-r--r--SmartDeviceLink/SDLVehicleType.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLVehicleType.h b/SmartDeviceLink/SDLVehicleType.h
index aceb40b72..9201966a9 100644
--- a/SmartDeviceLink/SDLVehicleType.h
+++ b/SmartDeviceLink/SDLVehicleType.h
@@ -18,7 +18,7 @@
*
* Optional, Max String length 500 chars
*/
-@property (strong) NSString *make;
+@property (strong, nonatomic) NSString *make;
/**
* @abstract The model of the vehicle
@@ -27,7 +27,7 @@
*
* Optional, Max String length 500 chars
*/
-@property (strong) NSString *model;
+@property (strong, nonatomic) NSString *model;
/**
* @abstract The model year of the vehicle
@@ -36,7 +36,7 @@
*
* Optional, Max String length 500 chars
*/
-@property (strong) NSString *modelYear;
+@property (strong, nonatomic) NSString *modelYear;
/**
* @abstract The trim of the vehicle
@@ -45,6 +45,6 @@
*
* Optional, Max String length 500 chars
*/
-@property (strong) NSString *trim;
+@property (strong, nonatomic) NSString *trim;
@end