summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_external
diff options
context:
space:
mode:
authorAndrey Oleynik (GitHub) <aoleynik@luxoft.com>2017-12-06 10:20:51 +0200
committerAndriy Byzhynar <AByzhynar@luxoft.com>2018-01-18 12:03:51 +0200
commitc4e771fb7d402157c5cbb5159c41e0a4553b8492 (patch)
tree80590c89fd5edf14c425fc92976be92236cff6a0 /src/components/policy/policy_external
parent2c207377259ad01c7f231533ba7189008d03a898 (diff)
downloadsdl_core-c4e771fb7d402157c5cbb5159c41e0a4553b8492.tar.gz
Fixes coding style
Diffstat (limited to 'src/components/policy/policy_external')
-rw-r--r--src/components/policy/policy_external/src/cache_manager.cc4
-rw-r--r--src/components/policy/policy_external/src/policy_manager_impl.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/components/policy/policy_external/src/cache_manager.cc b/src/components/policy/policy_external/src/cache_manager.cc
index 70739c9159..a9b599f981 100644
--- a/src/components/policy/policy_external/src/cache_manager.cc
+++ b/src/components/policy/policy_external/src/cache_manager.cc
@@ -2645,8 +2645,8 @@ void CacheManager::OnDeviceSwitching(const std::string& device_id_from,
auto& consents_to = *(to->second.user_consent_records);
LOG4CXX_DEBUG(logger_,
- "Merging user consents from device: " << device_id_from <<
- " to device: " << device_id_to);
+ "Merging user consents from device: "
+ << device_id_from << " to device: " << device_id_to);
for (auto f = consents_from.begin(); f != consents_from.end(); ++f) {
const auto app_id = f->first;
LOG4CXX_DEBUG(logger_, "Updating permissions for key: " << app_id);
diff --git a/src/components/policy/policy_external/src/policy_manager_impl.cc b/src/components/policy/policy_external/src/policy_manager_impl.cc
index 24bfd3a4d1..806b7e13ba 100644
--- a/src/components/policy/policy_external/src/policy_manager_impl.cc
+++ b/src/components/policy/policy_external/src/policy_manager_impl.cc
@@ -1681,8 +1681,8 @@ void PolicyManagerImpl::OnAppRegisteredOnMobile(
SendNotificationOnPermissionsUpdated(application_id);
}
-void PolicyManagerImpl::OnDeviceSwitching(
- const std::string& device_id_from, const std::string& device_id_to) {
+void PolicyManagerImpl::OnDeviceSwitching(const std::string& device_id_from,
+ const std::string& device_id_to) {
LOG4CXX_AUTO_TRACE(logger_);
cache_->OnDeviceSwitching(device_id_from, device_id_to);
}