diff --git a/doc/tutorials/pick_and_place_with_moveit_task_constructor/src/mtc_node.cpp b/doc/tutorials/pick_and_place_with_moveit_task_constructor/src/mtc_node.cpp index 1cc5101a4b..95d542bb85 100644 --- a/doc/tutorials/pick_and_place_with_moveit_task_constructor/src/mtc_node.cpp +++ b/doc/tutorials/pick_and_place_with_moveit_task_constructor/src/mtc_node.cpp @@ -149,10 +149,10 @@ mtc::Task MTCTaskNode::createTask() // In fact, `task` itself is a SerialContainer by default. { auto grasp = std::make_unique("pick object"); - task.properties().exposeTo(grasp->properties(), { "eef", "hand", "group", "ik_frame" }); + task.properties().exposeTo(grasp->properties(), { "eef", "group", "ik_frame" }); // clang-format off grasp->properties().configureInitFrom(mtc::Stage::PARENT, - { "eef", "hand", "group", "ik_frame" }); + { "eef", "group", "ik_frame" }); // clang-format on { @@ -268,10 +268,10 @@ mtc::Task MTCTaskNode::createTask() { auto place = std::make_unique("place object"); - task.properties().exposeTo(place->properties(), { "eef", "hand", "group", "ik_frame" }); + task.properties().exposeTo(place->properties(), { "eef", "group", "ik_frame" }); // clang-format off place->properties().configureInitFrom(mtc::Stage::PARENT, - { "eef", "hand", "group", "ik_frame" }); + { "eef", "group", "ik_frame" }); // clang-format on /****************************************************