summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLScrollableMessage.m
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-20 09:44:46 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-20 09:44:46 -0500
commited3402140610fcd50f858baf7ebaafbfcb5ec2b2 (patch)
tree3db45b87582e8f6658bad9fff54114bbb344381a /SmartDeviceLink/SDLScrollableMessage.m
parent36dc4c265062deb354358006156c4dd35b049332 (diff)
downloadsdl_ios-ed3402140610fcd50f858baf7ebaafbfcb5ec2b2.tar.gz
RPC arrays are now immutable
Diffstat (limited to 'SmartDeviceLink/SDLScrollableMessage.m')
-rw-r--r--SmartDeviceLink/SDLScrollableMessage.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLScrollableMessage.m b/SmartDeviceLink/SDLScrollableMessage.m
index f156e5453..f9c92c796 100644
--- a/SmartDeviceLink/SDLScrollableMessage.m
+++ b/SmartDeviceLink/SDLScrollableMessage.m
@@ -57,11 +57,11 @@ NS_ASSUME_NONNULL_BEGIN
return [parameters sdl_objectForName:SDLNameTimeout];
}
-- (void)setSoftButtons:(nullable NSMutableArray<SDLSoftButton *> *)softButtons {
+- (void)setSoftButtons:(nullable NSArray<SDLSoftButton *> *)softButtons {
[parameters sdl_setObject:softButtons forName:SDLNameSoftButtons];
}
-- (nullable NSMutableArray<SDLSoftButton *> *)softButtons {
+- (nullable NSArray<SDLSoftButton *> *)softButtons {
return [parameters sdl_objectsForName:SDLNameSoftButtons ofClass:SDLSoftButton.class];
}