summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Dickow <jjdickow@gmail.com>2016-03-03 16:22:27 -0500
committerJustin Dickow <jjdickow@gmail.com>2016-03-03 16:22:27 -0500
commite5089510977f588494b055d0d386a94b1c6ad2ee (patch)
treeb9b391ff34d591ae73541c8d2c253e622e156fbc
parentefbde438b8515e07efc2539c004e9bd16027746f (diff)
downloadsdl_ios-e5089510977f588494b055d0d386a94b1c6ad2ee.tar.gz
So Joel doesn't have to merge one line
Signed-off-by: Justin Dickow <jjdickow@gmail.com>
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLV2ProtocolMessage.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLV2ProtocolMessage.m b/SmartDeviceLink-iOS/SmartDeviceLink/SDLV2ProtocolMessage.m
index e148d74df..6d048b71d 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLV2ProtocolMessage.m
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLV2ProtocolMessage.m
@@ -21,9 +21,8 @@
// Convert RPC payload to dictionary (for consumption by RPC layer)
- (NSDictionary *)rpcDictionary {
-
// Only applicable to RPCs
- if (self.header.serviceType != SDLServiceType_RPC && self.header.serviceType != SDLServiceType_BulkData) {
+ if ((self.header.serviceType != SDLServiceType_RPC) && (self.header.serviceType != SDLServiceType_BulkData)) {
return nil;
}