summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_regular/src/policy_manager_impl.cc
diff options
context:
space:
mode:
authorIra Lytvynenko <ILytvynenko@luxoft.com>2017-05-11 13:16:57 +0300
committerIra Lytvynenko <ILytvynenko@luxoft.com>2017-05-11 13:25:59 +0300
commitacfcca4334380d770afd43aef88809971aa14d52 (patch)
treecac85fdd26b4461471a5a07837cd6629b498f961 /src/components/policy/policy_regular/src/policy_manager_impl.cc
parent48286ff96a26b693db89193d8c849d5a5695395b (diff)
downloadsdl_core-acfcca4334380d770afd43aef88809971aa14d52.tar.gz
Fix codestyle
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.cc6
1 files changed, 3 insertions, 3 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 b73aea71ba..9aac892300 100644
--- a/src/components/policy/policy_regular/src/policy_manager_impl.cc
+++ b/src/components/policy/policy_regular/src/policy_manager_impl.cc
@@ -77,8 +77,7 @@ PolicyManagerImpl::PolicyManagerImpl()
new timer::TimerTaskImpl<PolicyManagerImpl>(
this, &PolicyManagerImpl::RetrySequence))
, ignition_check(true)
- , retry_sequence_url_(0, 0, "") {
-}
+ , retry_sequence_url_(0, 0, "") {}
void PolicyManagerImpl::set_listener(PolicyListener* listener) {
listener_ = listener;
@@ -316,7 +315,8 @@ void PolicyManagerImpl::StartPTExchange() {
if (RequestPTUpdate() && !timer_retry_sequence_.is_running()) {
// Start retry sequency
const int timeout_sec = NextRetryTimeout();
- LOG4CXX_DEBUG(logger_, "Start retry sequence timeout = " << timeout_sec);
+ LOG4CXX_DEBUG(logger_,
+ "Start retry sequence timeout = " << timeout_sec);
timer_retry_sequence_.Start(timeout_sec, timer::kPeriodic);
}
}