summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_command_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_command_factory.cc')
-rw-r--r--src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_command_factory.cc13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_command_factory.cc b/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_command_factory.cc
index c1743c8540..6e5d1b6e5c 100644
--- a/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_command_factory.cc
+++ b/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_command_factory.cc
@@ -217,7 +217,8 @@ CommandCreator& RCCommandFactory::get_mobile_command_creator(
: rc_factory.GetCreator<
commands::GetInteriorVehicleDataConsentResponse>();
}
- default: {}
+ default: {
+ }
}
return rc_factory.GetCreator<RCInvalidCommand>();
}
@@ -230,7 +231,8 @@ CommandCreator& RCCommandFactory::get_mobile_notification_creator(
return rc_factory
.GetCreator<commands::OnInteriorVehicleDataNotification>();
}
- default: {}
+ default: {
+ }
}
return rc_factory.GetCreator<RCInvalidCommand>();
}
@@ -259,7 +261,8 @@ CommandCreator& RCCommandFactory::get_mobile_creator_factory(
}
break;
}
- default: {}
+ default: {
+ }
}
return rc_factory.GetCreator<RCInvalidCommand>();
}
@@ -314,7 +317,9 @@ CommandCreator& RCCommandFactory::get_hmi_creator_factory(
: rc_factory
.GetCreator<commands::RCSetGlobalPropertiesResponse>();
}
- default: { return rc_factory.GetCreator<RCInvalidCommand>(); }
+ default: {
+ return rc_factory.GetCreator<RCInvalidCommand>();
+ }
}
}
} // namespace rc_rpc_plugin