Skip to content
Snippets Groups Projects
Commit 30417f1d authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Remove unused params

parent 9ab19189
No related branches found
No related tags found
2 merge requests!11new release,!10new release
...@@ -43,7 +43,6 @@ namespace wolf ...@@ -43,7 +43,6 @@ namespace wolf
class PublisherPose: public Publisher class PublisherPose: public Publisher
{ {
bool pose_array_, marker_, pose_with_cov_;
bool extrinsics_; bool extrinsics_;
int max_points_; int max_points_;
double line_size_; double line_size_;
......
...@@ -52,7 +52,7 @@ PublisherPose::PublisherPose(const std::string& _unique_name, ...@@ -52,7 +52,7 @@ PublisherPose::PublisherPose(const std::string& _unique_name,
prefix_ + "/line_size", prefix_ + "/line_size",
0.1); 0.1);
extrinsics_ = _server.getParam<bool>(prefix_ + "/extrinsics"); extrinsics_ = _server.getParam<bool>(prefix_ + "/extrinsics");
if (extrinsics_) if (extrinsics_)
sensor_ = _problem->getSensor(_server.getParam<std::string>(prefix_ + "/sensor")); sensor_ = _problem->getSensor(_server.getParam<std::string>(prefix_ + "/sensor"));
frame_id_ = _server.getParam<std::string>(prefix_ + "/frame_id"); frame_id_ = _server.getParam<std::string>(prefix_ + "/frame_id");
......
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