Skip to content

Commit 5ac7a1e

Browse files
committed
delete unnecessary comment
Signed-off-by: Koichi Imai <koichi.imai.2@tier4.jp>
1 parent 99e3355 commit 5ac7a1e

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

localization/autoware_ekf_localizer/src/ekf_localizer.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ void EKFLocalizer::callback_pose_with_covariance(
337337
return;
338338
}
339339

340-
// pose_queue_ stores rclcpp SharedPtr; copy out of the (read-only) agnocast message.
341340
auto pose_msg = std::make_shared<geometry_msgs::msg::PoseWithCovarianceStamped>(*msg);
342341
pose_queue_.push(pose_msg);
343342

@@ -361,8 +360,6 @@ void EKFLocalizer::callback_pose_with_covariance(
361360
void EKFLocalizer::callback_twist_with_covariance(
362361
const AUTOWARE_MESSAGE_CONST_SHARED_PTR(geometry_msgs::msg::TwistWithCovarianceStamped) msg)
363362
{
364-
// twist_queue_ stores rclcpp SharedPtr; copy out of the (read-only) agnocast message so we
365-
// can also adjust the covariance below.
366363
auto twist_msg = std::make_shared<geometry_msgs::msg::TwistWithCovarianceStamped>(*msg);
367364

368365
// Ignore twist if velocity is too small.

0 commit comments

Comments
 (0)