summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_regular/src/policy_manager_impl.cc
diff options
context:
space:
mode:
authorConlain Kelly <conlain.k@gmail.com>2018-07-18 11:24:11 -0400
committerConlain Kelly <conlain.k@gmail.com>2018-07-18 11:24:11 -0400
commit81fb6ddaf3ba4ecb5e0129401239af75db45d84d (patch)
treec71fc838d006b6b37b008e6f452e6ac2d7463f8c /src/components/policy/policy_regular/src/policy_manager_impl.cc
parent5019af50b9a2236dd75e630aae5b82e440be9620 (diff)
downloadsdl_core-81fb6ddaf3ba4ecb5e0129401239af75db45d84d.tar.gz
style fix
Diffstat (limited to 'src/components/policy/policy_regular/src/policy_manager_impl.cc')
-rw-r--r--src/components/policy/policy_regular/src/policy_manager_impl.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/policy/policy_regular/src/policy_manager_impl.cc b/src/components/policy/policy_regular/src/policy_manager_impl.cc
index f1e51f3f83..297d538165 100644
--- a/src/components/policy/policy_regular/src/policy_manager_impl.cc
+++ b/src/components/policy/policy_regular/src/policy_manager_impl.cc
@@ -73,8 +73,8 @@ PolicyManagerImpl::PolicyManagerImpl()
: PolicyManager()
, listener_(NULL)
, cache_(new CacheManager)
- , access_remote_(new AccessRemoteImpl(
- std::static_pointer_cast<CacheManager>(cache_)))
+ , access_remote_(
+ new AccessRemoteImpl(std::static_pointer_cast<CacheManager>(cache_)))
, retry_sequence_timeout_(kDefaultRetryTimeoutInMSec)
, retry_sequence_index_(0)
, timer_retry_sequence_("Retry sequence timer",
@@ -1067,7 +1067,7 @@ StatusNotifier PolicyManagerImpl::AddApplication(
if (IsNewApplication(application_id)) {
AddNewApplication(application_id, device_consent);
return std::make_shared<CallStatusChange>(update_status_manager_,
- device_consent);
+ device_consent);
} else {
PromoteExistedApplication(application_id, device_consent);
return std::make_shared<utils::CallNothing>();
@@ -1164,7 +1164,7 @@ void PolicyManagerImpl::SaveUpdateStatusRequired(bool is_update_needed) {
}
void PolicyManagerImpl::set_cache_manager(
- CacheManagerInterface* cache_manager) {
+ CacheManagerInterface* cache_manager) {
cache_ = std::shared_ptr<CacheManagerInterface>(cache_manager);
}