diff --git a/nav2_behavior_tree/include/nav2_behavior_tree/plugins/decorator/goal_updater_node.hpp b/nav2_behavior_tree/include/nav2_behavior_tree/plugins/decorator/goal_updater_node.hpp index 6c99d66802..6951cf6237 100644 --- a/nav2_behavior_tree/include/nav2_behavior_tree/plugins/decorator/goal_updater_node.hpp +++ b/nav2_behavior_tree/include/nav2_behavior_tree/plugins/decorator/goal_updater_node.hpp @@ -38,7 +38,6 @@ namespace nav2_behavior_tree class GoalUpdater : public BT::DecoratorNode { public: - typedef std::vector Goals; /** * @brief A constructor for nav2_behavior_tree::GoalUpdater * @param xml_tag_name Name for the XML tag for this node @@ -56,10 +55,10 @@ class GoalUpdater : public BT::DecoratorNode { return { BT::InputPort("input_goal", "Original Goal"), - BT::InputPort("input_goals", "Original Goals"), + BT::InputPort("input_goals", "Original Goals"), BT::OutputPort("output_goal", "Received Goal by subscription"), - BT::OutputPort("output_goals", "Received Goals by subscription") + BT::OutputPort("output_goals", "Received Goals by subscription") }; }