diff options
Diffstat (limited to 'SmartDeviceLink/SDLRPCStruct.m')
-rw-r--r-- | SmartDeviceLink/SDLRPCStruct.m | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLRPCStruct.m b/SmartDeviceLink/SDLRPCStruct.m index dd96fff5d..c0c91b5dd 100644 --- a/SmartDeviceLink/SDLRPCStruct.m +++ b/SmartDeviceLink/SDLRPCStruct.m @@ -5,8 +5,6 @@ #import "SDLRPCStruct.h" #import "SDLEnum.h" -#import "SDLNames.h" - @implementation SDLRPCStruct @@ -68,7 +66,7 @@ NSString *messageType = [[store keyEnumerator] nextObject]; NSMutableDictionary *function = [store objectForKey:messageType]; if ([function isKindOfClass:NSMutableDictionary.class]) { - NSMutableDictionary *parameters = [function objectForKey:NAMES_parameters]; + NSMutableDictionary *parameters = [function objectForKey:SDLNameParameters]; return [self serializeDictionary:parameters version:version]; } else { return [self serializeDictionary:store version:version]; |