summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/mobile_command_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/mobile_command_factory.cc')
-rw-r--r--src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/mobile_command_factory.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/mobile_command_factory.cc b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/mobile_command_factory.cc
index 0a8c342448..c70962dc4a 100644
--- a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/mobile_command_factory.cc
+++ b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/mobile_command_factory.cc
@@ -408,7 +408,8 @@ CommandCreator& MobileCommandFactory::get_command_creator(
using app_mngr::commands::Command;
return factory.GetCreator<commands::GenericResponse>();
}
- default: {}
+ default: {
+ }
}
return factory.GetCreator<InvalidCommand>();
}
@@ -480,7 +481,8 @@ CommandCreator& MobileCommandFactory::get_notification_creator(
case mobile_apis::FunctionID::OnSubtleAlertPressedID: {
return factory.GetCreator<commands::OnSubtleAlertPressedNotification>();
}
- default: {}
+ default: {
+ }
}
return factory.GetCreator<InvalidCommand>();
}
@@ -501,7 +503,8 @@ CommandCreator& MobileCommandFactory::get_notification_from_mobile_creator(
return factory
.GetCreator<commands::mobile::OnAppCapabilityUpdatedNotification>();
}
- default: {}
+ default: {
+ }
}
return factory.GetCreator<InvalidCommand>();
}
@@ -532,7 +535,8 @@ CommandCreator& MobileCommandFactory::get_creator_factory(
}
break;
}
- default: {}
+ default: {
+ }
}
CommandCreatorFactory factory(
application_manager_, rpc_service_, hmi_capabilities_, policy_handler_);