summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksandr <okozlov@luxoft.com>2016-07-11 16:25:07 +0300
committerOleksandr <okozlov@luxoft.com>2016-07-12 13:11:40 +0300
commit8ba7a97207a9de4c17043675d268231cae3e9e4b (patch)
treefa7eb647e431e579e70a206716e406af13671faf
parent5d57a9568418b33088327abd4a8410f82eaffc76 (diff)
downloadsdl_core-8ba7a97207a9de4c17043675d268231cae3e9e4b.tar.gz
Resolve issue with coding style
Resolved issue with coding style Related to APPLINK-25408
-rw-r--r--src/components/application_manager/src/commands/mobile/system_request.cc4
-rw-r--r--src/components/policy/src/sql_pt_representation.cc1
2 files changed, 2 insertions, 3 deletions
diff --git a/src/components/application_manager/src/commands/mobile/system_request.cc b/src/components/application_manager/src/commands/mobile/system_request.cc
index d411340a4f..9b8050e28b 100644
--- a/src/components/application_manager/src/commands/mobile/system_request.cc
+++ b/src/components/application_manager/src/commands/mobile/system_request.cc
@@ -225,8 +225,8 @@ class QueryAppsDataValidator {
manager_.application_by_policy_id(app_id);
if (registered_app) {
LOG4CXX_INFO(logger_,
- "Application with the same id: "
- << app_id << " is registered already.");
+ "Application with the id: " << app_id
+ << " is already registered.");
}
// Verify app name exist
if (!app_data.keyExists(json::name)) {
diff --git a/src/components/policy/src/sql_pt_representation.cc b/src/components/policy/src/sql_pt_representation.cc
index 20bc2ade4d..d6d5116ea4 100644
--- a/src/components/policy/src/sql_pt_representation.cc
+++ b/src/components/policy/src/sql_pt_representation.cc
@@ -644,7 +644,6 @@ bool SQLPTRepresentation::GatherConsumerFriendlyMessages(
if (query.Prepare(sql_pt::kCollectFriendlyMsg)) {
while (query.Next()) {
-
UserFriendlyMessage msg;
msg.message_code = query.GetString(7);
std::string language = query.GetString(6);