Skip to content
Snippets Groups Projects
Commit 3fb42cdc authored by Fabian Reister's avatar Fabian Reister
Browse files

cleanup

parent 3991d954
No related branches found
No related tags found
1 merge request!21Fix/navigator avoid repeated instantiation of virtual robot
......@@ -316,7 +316,6 @@ namespace armarx::navigation::components
try
{
// initializeContext();
navigators.at(callerId).moveTo(convert(waypoints),
core::NavigationFrameNames.from_name(navigationMode));
}
......@@ -348,7 +347,6 @@ namespace armarx::navigation::components
ARMARX_CHECK(navigators.count(callerId) > 0)
<< "Navigator config for caller `" << callerId << "` not registered!";
// initializeContext();
visualizeSPFA();
navigators.at(callerId).moveTo(wps, core::NavigationFrameNames.from_name(navigationMode));
......@@ -368,7 +366,6 @@ namespace armarx::navigation::components
ARMARX_CHECK(navigators.count(callerId) > 0)
<< "Navigator config for caller `" << callerId << "` not registered!";
// initializeContext();
navigators.at(callerId).moveTowards(direction,
core::NavigationFrameNames.from_name(navigationMode));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment