Skip to content

Commit 1e1d2fc

Browse files
authored
refactor(goal_planner): remove unnecessary member from PreviousPullOverData (#8698)
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent 01b3c37 commit 1e1d2fc

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/include/autoware/behavior_path_goal_planner_module/goal_planner_module.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,10 @@ struct PreviousPullOverData
108108

109109
void reset()
110110
{
111-
found_path = false;
112111
safety_status = SafetyStatus{};
113112
deciding_path_status = DecidingPathStatusWithStamp{};
114113
}
115114

116-
bool found_path{false};
117115
SafetyStatus safety_status{};
118116
DecidingPathStatusWithStamp deciding_path_status{};
119117
};

planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/src/goal_planner_module.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,6 @@ void GoalPlannerModule::updatePreviousData()
15291529
// this is used to determine whether to generate a new stop path or keep the current stop path.
15301530
// TODO(Mamoru Sobue): put prev_data_ out of ThreadSafeData
15311531
auto prev_data = thread_safe_data_.get_prev_data();
1532-
prev_data.found_path = thread_safe_data_.foundPullOverPath();
15331532

15341533
prev_data.deciding_path_status = checkDecidingPathStatus(
15351534
planner_data_, occupancy_grid_map_, *parameters_, ego_predicted_path_params_,

0 commit comments

Comments
 (0)