Skip to content

Commit

Permalink
remove obsolete comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Feb 26, 2019
1 parent ebcf7a3 commit e065ba1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rclcpp_action/include/rclcpp_action/client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,6 @@ class Client : public ClientBase
using GoalStatusMessage = typename ActionT::Impl::GoalStatusMessage;
auto status_message = std::static_pointer_cast<GoalStatusMessage>(message);
for (const GoalStatus & status : status_message->status_list) {
// const GoalUUID & goal_id = status.goal_info.goal_id;
const GoalUUID & goal_id = status.goal_info.goal_id.uuid;
if (goal_handles_.count(goal_id) == 0) {
RCLCPP_DEBUG(
Expand All @@ -494,7 +493,6 @@ class Client : public ClientBase
{
using GoalResultRequest = typename ActionT::Impl::GetResultService::Request;
auto goal_result_request = std::make_shared<GoalResultRequest>();
// goal_result_request.goal_id = goal_handle->get_goal_id();
goal_result_request->goal_id.uuid = goal_handle->get_goal_id();
this->send_result_request(
std::static_pointer_cast<void>(goal_result_request),
Expand Down

0 comments on commit e065ba1

Please sign in to comment.