Skip to content

Commit

Permalink
Remove obvious comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sjahr authored Aug 12, 2024
1 parent 5d5332a commit c2a3f52
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions moveit_core/robot_state/src/robot_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,6 @@ const LinkModel* RobotState::getRigidlyConnectedParentLinkModel(const std::strin
std::string object{ frame.substr(0, idx) };
if (!hasAttachedBody(object))
{
// If the attached body is not found, log an error and return nullptr
RCLCPP_ERROR(getLogger(),
"Cannot find rigidly connected parent link for frame '%s' because there is no attached body.",
frame.c_str());
Expand All @@ -935,7 +934,6 @@ const LinkModel* RobotState::getRigidlyConnectedParentLinkModel(const std::strin
auto body{ getAttachedBody(object) };
if (!body->hasSubframeTransform(frame))
{
// If the subframe transform is not found, log an error and return nullptr
RCLCPP_ERROR(getLogger(),
"Cannot find rigidly connected parent link for frame '%s' because the transformation to the parent "
"link is unknown.",
Expand Down

0 comments on commit c2a3f52

Please sign in to comment.