summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/hmi/on_system_info_changed_notification.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/src/commands/hmi/on_system_info_changed_notification.cc')
-rw-r--r--src/components/application_manager/src/commands/hmi/on_system_info_changed_notification.cc10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/components/application_manager/src/commands/hmi/on_system_info_changed_notification.cc b/src/components/application_manager/src/commands/hmi/on_system_info_changed_notification.cc
index 9c852caa36..00b3649284 100644
--- a/src/components/application_manager/src/commands/hmi/on_system_info_changed_notification.cc
+++ b/src/components/application_manager/src/commands/hmi/on_system_info_changed_notification.cc
@@ -40,11 +40,9 @@ namespace commands {
OnSystemInfoChangedNotification::OnSystemInfoChangedNotification(
const MessageSharedPtr& message, ApplicationManager& application_manager)
- : NotificationFromHMI(message, application_manager) {
-}
+ : NotificationFromHMI(message, application_manager) {}
-OnSystemInfoChangedNotification::~OnSystemInfoChangedNotification() {
-}
+OnSystemInfoChangedNotification::~OnSystemInfoChangedNotification() {}
void OnSystemInfoChangedNotification::Run() {
LOG4CXX_AUTO_TRACE(logger_);
@@ -52,7 +50,7 @@ void OnSystemInfoChangedNotification::Run() {
(*message_)[strings::msg_params][strings::language].asUInt();
const std::string language =
application_manager::MessageHelper::CommonLanguageToString(
- static_cast<hmi_apis::Common_Language::eType>(lang_code));
+ static_cast<hmi_apis::Common_Language::eType>(lang_code));
application_manager_.GetPolicyHandler().OnSystemInfoChanged(language);
}
@@ -60,5 +58,3 @@ void OnSystemInfoChangedNotification::Run() {
} // namespace commands
} // namespace application_manager
-
-