summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLCreateInteractionChoiceSet.m
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-10-22 21:33:33 -0600
committerMuller, Alexander (A.) <amulle19@ford.com>2016-10-22 21:33:33 -0600
commit29df55dcd367781e6f3f10482e07f070008832a8 (patch)
treed615e95afc57270eead9c0edf9411d16ee2b19d0 /SmartDeviceLink/SDLCreateInteractionChoiceSet.m
parentdfc28adc2373a3aafb4bf3e3535199e4c2c2b217 (diff)
downloadsdl_ios-29df55dcd367781e6f3f10482e07f070008832a8.tar.gz
Updated all NSNumbers with type generic.
Diffstat (limited to 'SmartDeviceLink/SDLCreateInteractionChoiceSet.m')
-rw-r--r--SmartDeviceLink/SDLCreateInteractionChoiceSet.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLCreateInteractionChoiceSet.m b/SmartDeviceLink/SDLCreateInteractionChoiceSet.m
index 3d443d719..c3d3d9463 100644
--- a/SmartDeviceLink/SDLCreateInteractionChoiceSet.m
+++ b/SmartDeviceLink/SDLCreateInteractionChoiceSet.m
@@ -15,7 +15,7 @@
return self;
}
-- (void)setInteractionChoiceSetID:(NSNumber *)interactionChoiceSetID {
+- (void)setInteractionChoiceSetID:(NSNumber<SDLInt> *)interactionChoiceSetID {
if (interactionChoiceSetID != nil) {
[parameters setObject:interactionChoiceSetID forKey:SDLNameInteractionChoiceSetId];
} else {
@@ -23,7 +23,7 @@
}
}
-- (NSNumber *)interactionChoiceSetID {
+- (NSNumber<SDLInt> *)interactionChoiceSetID {
return [parameters objectForKey:SDLNameInteractionChoiceSetId];
}