summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryLeonid <YLokhmatov@luxoft.com>2019-09-30 01:11:21 +0300
committeryLeonid <YLokhmatov@luxoft.com>2019-09-30 01:11:21 +0300
commit4f79b980a5907f56bcab42b0d6698d906dc7a9e7 (patch)
tree1e502e9d4ddd31568522fe28d884e0c152592915
parent89d623d801bdbf805104544dc3f107b0b24f1675 (diff)
downloadsdl_ios-4f79b980a5907f56bcab42b0d6698d906dc7a9e7.tar.gz
issue_1386_manager_update_display_capability : fix typo (whitespace) in SDLSystemCapabilityManager.m
-rw-r--r--SmartDeviceLink/SDLSystemCapabilityManager.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLSystemCapabilityManager.m b/SmartDeviceLink/SDLSystemCapabilityManager.m
index 0393c32e3..d0be4ffc4 100644
--- a/SmartDeviceLink/SDLSystemCapabilityManager.m
+++ b/SmartDeviceLink/SDLSystemCapabilityManager.m
@@ -156,7 +156,7 @@ typedef NSString * SDLServiceID;
/**
* Registers for notifications and responses from Core
*/
--(void)sdl_registerForNotifications {
+- (void)sdl_registerForNotifications {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sdl_registerResponse:) name:SDLDidReceiveRegisterAppInterfaceResponse object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sdl_displayLayoutResponse:) name:SDLDidReceiveSetDisplayLayoutResponse object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sdl_systemCapabilityUpdatedNotification:) name:SDLDidReceiveSystemCapabilityUpdatedNotification object:nil];
@@ -215,7 +215,7 @@ typedef NSString * SDLServiceID;
self.presetBankCapabilities = response.presetBankCapabilities;
self.displays = [self sdl_createDisplayCapabilityListFromSetDisplayLayoutResponse:response];
-
+
// call the observers in case the new display capability list is created from deprecated types
SDLSystemCapability *systemCapability = [[SDLSystemCapability alloc] initWithDisplayCapabilities:self.displays];
[self sdl_callSaveHandlerForCapability:systemCapability andReturnWithValue:YES handler:nil];