Skip to content

Commit

Permalink
reverting function renaming in SDLRPCMessage.
Browse files Browse the repository at this point in the history
  • Loading branch information
asm09fsu committed Sep 27, 2016
1 parent 7246055 commit 2f587e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SmartDeviceLink/SDLRPCMessage.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

- (instancetype)initWithName:(NSString *)name;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
- (NSString *)functionNameForId;
- (NSString *)getFunctionName;
- (void)setFunctionName:(NSString *)functionName;
- (NSObject *)getParameters:(NSString *)functionName;
- (void)setParameters:(NSString *)functionName value:(NSObject *)value;
Expand Down
2 changes: 1 addition & 1 deletion SmartDeviceLink/SDLRPCMessage.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (instancetype)initWithDictionary:(NSMutableDictionary *)dict {
return self;
}

- (NSString *)functionNameForId {
- (NSString *)getFunctionName {
return [function objectForKey:SDLNameOperationName];
}

Expand Down

0 comments on commit 2f587e1

Please sign in to comment.