Skip to content

Commit 37ae642

Browse files
committed
change todo args according to 7f55b81
1 parent 731b3fb commit 37ae642

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ros_robot_localization_listener.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ RosRobotLocalizationListener::RosRobotLocalizationListener(
102102

103103
// Load up the process noise covariance (from the launch file/parameter
104104
// server)
105-
// TODO(anyone): this code is copied from ros_filter. In a refactor, this
105+
// TODO(reinzor): this code is copied from ros_filter. In a refactor, this
106106
// could be moved to a function in ros_filter_utilities
107107
Eigen::MatrixXd process_noise_covariance(STATE_SIZE, STATE_SIZE);
108108
process_noise_covariance.setZero();
@@ -373,7 +373,7 @@ bool RosRobotLocalizationListener::getState(
373373
world_requested_to_world_transform = tf_buffer_.lookupTransform(world_frame_id,
374374
world_frame_id_,
375375
tf2::TimePoint(std::chrono::nanoseconds(static_cast<int>(time * 1000000000))),
376-
tf2::durationFromSec(0.1)); // TODO(anyone): magic number
376+
tf2::durationFromSec(0.1)); // TODO(reinzor): magic number
377377

378378
if (findAncestor(tf_buffer_, world_frame_id, base_frame_id_) ) {
379379
RCLCPP_ERROR(node_logger_->get_logger(),
@@ -402,7 +402,7 @@ bool RosRobotLocalizationListener::getState(
402402
base_to_target_transform = tf_buffer_.lookupTransform(base_frame_id_,
403403
frame_id,
404404
tf2::TimePoint(std::chrono::nanoseconds(static_cast<int>(time * 1000000000))),
405-
tf2::durationFromSec(0.1)); // TODO(anyone): magic number
405+
tf2::durationFromSec(0.1)); // TODO(reinzor): magic number
406406

407407
// Check that frame_id is a child of the base frame. If it is not, it does
408408
// not make sense to request its state.

0 commit comments

Comments
 (0)