summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAlertResponse.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLAlertResponse.m')
-rw-r--r--SmartDeviceLink/SDLAlertResponse.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLAlertResponse.m b/SmartDeviceLink/SDLAlertResponse.m
index e2a3af5e1..e608b807c 100644
--- a/SmartDeviceLink/SDLAlertResponse.m
+++ b/SmartDeviceLink/SDLAlertResponse.m
@@ -13,7 +13,7 @@
return self;
}
-- (void)setTryAgainTime:(NSNumber<SDLInt> *)tryAgainTime {
+- (void)setTryAgainTime:(nullable NSNumber<SDLInt> *)tryAgainTime {
if (tryAgainTime != nil) {
[parameters setObject:tryAgainTime forKey:SDLNameTryAgainTime];
} else {
@@ -21,7 +21,7 @@
}
}
-- (NSNumber<SDLInt> *)tryAgainTime {
+- (nullable NSNumber<SDLInt> *)tryAgainTime {
return [parameters objectForKey:SDLNameTryAgainTime];
}