summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/mobile_command_factory.cc
diff options
context:
space:
mode:
authoragaliuzov <agaliuzov@luxoft.com>2016-04-07 16:03:02 +0300
committeragaliuzov <agaliuzov@luxoft.com>2016-04-07 17:54:51 +0300
commit9fa55390af2cad7b3fb299e75004f9f262f92170 (patch)
tree06ee520e01fd60a2b6cd2c3630f11e11adc3af95 /src/components/application_manager/src/mobile_command_factory.cc
parentc73c5976a96046d7ce2a5053362a5eef6e8a2b95 (diff)
downloadsdl_core-9fa55390af2cad7b3fb299e75004f9f262f92170.tar.gz
Repair CMakeFile after merging master to develop
Diffstat (limited to 'src/components/application_manager/src/mobile_command_factory.cc')
-rw-r--r--src/components/application_manager/src/mobile_command_factory.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/components/application_manager/src/mobile_command_factory.cc b/src/components/application_manager/src/mobile_command_factory.cc
index 3399ec2667..dc665bc28b 100644
--- a/src/components/application_manager/src/mobile_command_factory.cc
+++ b/src/components/application_manager/src/mobile_command_factory.cc
@@ -483,15 +483,6 @@ CommandSharedPtr MobileCommandFactory::CreateCommand(
case mobile_apis::FunctionID::DialNumberID: {
if ((*message)[strings::params][strings::message_type]
== static_cast<int>(application_manager::MessageType::kResponse)) {
- command = utils::MakeShared<commands::DialNumberResponse>(message);
- } else {
- command = utils::MakeShared<commands::DialNumberRequest>(message);
- }
- break;
- }
- case mobile_apis::FunctionID::DialNumberID: {
- if ((*message)[strings::params][strings::message_type]
- == static_cast<int>(application_manager::MessageType::kResponse)) {
return new commands::DialNumberResponse(message);
} else {
return new commands::DialNumberRequest(message);