summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCPermissionStatus.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLRPCPermissionStatus.m')
-rw-r--r--SmartDeviceLink/SDLRPCPermissionStatus.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLRPCPermissionStatus.m b/SmartDeviceLink/SDLRPCPermissionStatus.m
index f868ab267..edc64dc89 100644
--- a/SmartDeviceLink/SDLRPCPermissionStatus.m
+++ b/SmartDeviceLink/SDLRPCPermissionStatus.m
@@ -10,10 +10,10 @@
@implementation SDLRPCPermissionStatus
-- (instancetype)initWithRPCName:(SDLRPCFunctionName)rpcName isRPCAllowed:(BOOL)isRPCAllowed allowedParameters:(nullable NSMutableDictionary<NSString *,NSNumber *> *)allowedParameters {
+- (instancetype)initWithRPCName:(SDLRPCFunctionName)rpcName isRPCAllowed:(BOOL)isRPCAllowed rpcParameters:(nullable NSMutableDictionary<NSString *,NSNumber *> *)rpcParameters {
_rpcName = rpcName;
_rpcAllowed = isRPCAllowed;
- _allowedParameters = allowedParameters;
+ _rpcParameters = rpcParameters;
return self;
}