summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-12 16:37:44 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-12 16:37:44 -0500
commit8f684b96a43e768e3afc5cedaf45f2e41d8115ad (patch)
tree6511bee0cae400d8c8af84fd358b119291c75c6a
parenta825a883098852e3dfad8639f48e49dd8fcac75b (diff)
downloadsdl_ios-8f684b96a43e768e3afc5cedaf45f2e41d8115ad.tar.gz
Fix DateTime nullability
-rw-r--r--SmartDeviceLink/SDLDateTime.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/SmartDeviceLink/SDLDateTime.h b/SmartDeviceLink/SDLDateTime.h
index 840183553..9239696c9 100644
--- a/SmartDeviceLink/SDLDateTime.h
+++ b/SmartDeviceLink/SDLDateTime.h
@@ -20,63 +20,63 @@ NS_ASSUME_NONNULL_BEGIN
*
* Optional, Integer 0 - 999
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *millisecond;
+@property (copy, nonatomic) NSNumber<SDLInt> *millisecond;
/**
* @abstract Seconds part of time
*
* Optional, Integer 0 - 59
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *second;
+@property (copy, nonatomic) NSNumber<SDLInt> *second;
/**
* @abstract Minutes part of time
*
* Optional, Integer 0 - 59
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *minute;
+@property (copy, nonatomic) NSNumber<SDLInt> *minute;
/**
* @abstract Hour part of time
*
* Optional, Integer 0 - 23
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *hour;
+@property (copy, nonatomic) NSNumber<SDLInt> *hour;
/**
* @abstract Day of the month
*
* Optional, Integer 1 - 31
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *day;
+@property (copy, nonatomic) NSNumber<SDLInt> *day;
/**
* @abstract Month of the year
*
* Optional, Integer 1 - 12
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *month;
+@property (copy, nonatomic) NSNumber<SDLInt> *month;
/**
* @abstract The year in YYYY format
*
* Optional, Max Value 4095
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *year;
+@property (copy, nonatomic) NSNumber<SDLInt> *year;
/**
* @abstract Time zone offset in Min with regard to UTC
*
* Optional, Integer 0 - 59
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *timezoneMinuteOffset;
+@property (copy, nonatomic) NSNumber<SDLInt> *timezoneMinuteOffset;
/**
* @abstract Time zone offset in Hours with regard to UTC
*
* Optional, Integer -12 - 14
*/
-@property (nullable, copy, nonatomic) NSNumber<SDLInt> *timezoneHourOffset;
+@property (copy, nonatomic) NSNumber<SDLInt> *timezoneHourOffset;
@end