Skip to content

Commit

Permalink
Remove unnecessary warning
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Nov 19, 2023
1 parent fe12ce6 commit 9eae4ad
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,6 @@ JointTrajectoryController::command_interface_configuration() const
{
controller_interface::InterfaceConfiguration conf;
conf.type = controller_interface::interface_configuration_type::INDIVIDUAL;
if (num_cmd_joints_ == 0)
{
fprintf(
stderr,
"During ros2_control interface configuration, number of command interfaces is not valid;"
" it should be positive. Actual number is %zu\n",
num_cmd_joints_);
std::exit(EXIT_FAILURE);
}
conf.names.reserve(num_cmd_joints_ * params_.command_interfaces.size());
for (const auto & joint_name : command_joint_names_)
{
Expand Down

0 comments on commit 9eae4ad

Please sign in to comment.