summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLResponseDispatcher.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/SDLResponseDispatcher.m
parent36dc4c265062deb354358006156c4dd35b049332 (diff)
downloadsdl_ios-ed3402140610fcd50f858baf7ebaafbfcb5ec2b2.tar.gz
RPC arrays are now immutable
Diffstat (limited to 'SmartDeviceLink/SDLResponseDispatcher.m')
-rw-r--r--SmartDeviceLink/SDLResponseDispatcher.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLResponseDispatcher.m b/SmartDeviceLink/SDLResponseDispatcher.m
index a1fbd9303..f6e07ea1e 100644
--- a/SmartDeviceLink/SDLResponseDispatcher.m
+++ b/SmartDeviceLink/SDLResponseDispatcher.m
@@ -115,7 +115,7 @@ NS_ASSUME_NONNULL_BEGIN
[self.customButtonHandlerMap removeAllObjects];
}
-- (void)sdl_addToCustomButtonHandlerMap:(NSMutableArray<SDLSoftButton *> *)softButtons {
+- (void)sdl_addToCustomButtonHandlerMap:(NSArray<SDLSoftButton *> *)softButtons {
for (SDLSoftButton *sb in softButtons) {
if (!sb.softButtonID) {
@throw [NSException sdl_missingIdException];