Skip to content

Commit

Permalink
Apply formatting changes
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Fröhlich <christophfroehlich@users.noreply.github.com>
  • Loading branch information
saikishor and christophfroehlich committed Sep 16, 2024
1 parent 0a7a5df commit 51372f8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions controller_manager/src/controller_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,8 @@ void ControllerManager::init_resource_manager(const std::string & robot_descript
hardware_interface::return_type::ERROR)
{
throw std::runtime_error(
"Failed to set the initial state of the component : " + component + " to " + state.label());
"Failed to set the initial state of the component : " + component + " to " +
state.label());
}
components_to_activate.erase(component);
}
Expand Down Expand Up @@ -381,7 +382,8 @@ void ControllerManager::init_resource_manager(const std::string & robot_descript
hardware_interface::return_type::ERROR)
{
throw std::runtime_error(
"Failed to set the initial state of the component : " + component + " to " + active_state.label());
"Failed to set the initial state of the component : " + component + " to " +
active_state.label());
}
}
robot_description_notification_timer_->cancel();
Expand Down

0 comments on commit 51372f8

Please sign in to comment.