summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2021-09-16 12:54:05 -0400
committerJoel Fischer <joeljfischer@gmail.com>2021-09-16 12:54:05 -0400
commit1b6772a737b003144da9e2b98d3c71eb8684d6ec (patch)
tree04c5e4c6e5059e0c133226293ee290be059d08bb
parent8c5f3b000a2ebb0a40ab29f882fc9f749dfe752f (diff)
downloadsdl_ios-bugfix/issue-2018-choice-sets-fail.tar.gz
-rw-r--r--SmartDeviceLink/public/SDLChoiceSet.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/public/SDLChoiceSet.m b/SmartDeviceLink/public/SDLChoiceSet.m
index 8baf085a6..85c22bbcd 100644
--- a/SmartDeviceLink/public/SDLChoiceSet.m
+++ b/SmartDeviceLink/public/SDLChoiceSet.m
@@ -145,7 +145,7 @@ static SDLChoiceSetLayout _defaultLayout = SDLChoiceSetLayoutList;
@param choices The choices you will be adding
@return Boolean that indicates whether choices and voice commands are unique or not
*/
--(BOOL)sdl_choiceCellsAreUnique:(NSArray<SDLChoiceCell *> *)choices {
+- (BOOL)sdl_choiceCellsAreUnique:(NSArray<SDLChoiceCell *> *)choices {
NSMutableSet<SDLChoiceCell *> *identicalCellsCheckSet = [NSMutableSet setWithCapacity:choices.count];
NSMutableSet<NSString *> *identicalVoiceCommandsCheckSet = [NSMutableSet set];
NSUInteger allVoiceCommandsCount = 0;