summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConlain Kelly <conlain.k@gmail.com>2018-06-18 13:32:45 -0400
committerConlain Kelly <conlain.k@gmail.com>2018-06-18 13:52:45 -0400
commitd6b0d411b47ffe21ce23a1085e3405a105335e91 (patch)
tree54bee3461ab766b38677c9f07bc8af192ca08e7c
parenta767768447c9e7c7898b5b2847e54aa985fc5041 (diff)
downloadsdl_core-d6b0d411b47ffe21ce23a1085e3405a105335e91.tar.gz
style fix
-rw-r--r--src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h4
-rw-r--r--src/components/application_manager/src/app_launch/device_apps_launcher.cc6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h b/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h
index 609c833bf5..2a6cdb0745 100644
--- a/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h
+++ b/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h
@@ -38,8 +38,8 @@ class DeviceAppsLauncherImpl {
private:
sync_primitives::Lock launchers_lock_;
- std::vector<utils::SharedPtr<Launcher>> free_launchers_;
- std::vector<utils::SharedPtr<Launcher>> works_launchers_;
+ std::vector<utils::SharedPtr<Launcher> > free_launchers_;
+ std::vector<utils::SharedPtr<Launcher> > works_launchers_;
DeviceAppsLauncher& interface_;
};
diff --git a/src/components/application_manager/src/app_launch/device_apps_launcher.cc b/src/components/application_manager/src/app_launch/device_apps_launcher.cc
index 53ab04effd..9c67c70e2c 100644
--- a/src/components/application_manager/src/app_launch/device_apps_launcher.cc
+++ b/src/components/application_manager/src/app_launch/device_apps_launcher.cc
@@ -59,9 +59,9 @@ class Launcher {
device_launcher_.settings().wait_time_between_apps(),
timer::kSingleShot);
} else {
- LOG4CXX_DEBUG(
- logger_,
- "All Apps on " << apps_on_device_->first << " posponed launched");
+ LOG4CXX_DEBUG(logger_,
+ "All Apps on " << apps_on_device_->first
+ << " postponed launched");
device_launcher_.StopLaunchingAppsOnDevice(apps_on_device_->first);
}
}