@@ -54,13 +54,6 @@ std::shared_ptr<BehaviorVelocityPlannerNode> generateNode()
54
54
const auto velocity_smoother_dir =
55
55
ament_index_cpp::get_package_share_directory (" autoware_velocity_smoother" );
56
56
57
- // TODO(esteve): delete when all the modules are migrated to autoware_behavior_velocity_*
58
- const auto get_behavior_velocity_module_config_no_prefix = [](const std::string & module) {
59
- const auto package_name = " behavior_velocity_" + module + " _module" ;
60
- const auto package_path = ament_index_cpp::get_package_share_directory (package_name);
61
- return package_path + " /config/" + module + " .param.yaml" ;
62
- };
63
-
64
57
const auto get_behavior_velocity_module_config = [](const std::string & module) {
65
58
const auto package_name = " autoware_behavior_velocity_" + module + " _module" ;
66
59
const auto package_path = ament_index_cpp::get_package_share_directory (package_name);
@@ -103,11 +96,11 @@ std::shared_ptr<BehaviorVelocityPlannerNode> generateNode()
103
96
get_behavior_velocity_module_config (" no_stopping_area" ),
104
97
get_behavior_velocity_module_config (" occlusion_spot" ),
105
98
get_behavior_velocity_module_config (" run_out" ),
106
- get_behavior_velocity_module_config_no_prefix (" speed_bump" ),
99
+ get_behavior_velocity_module_config (" speed_bump" ),
107
100
get_behavior_velocity_module_config (" stop_line" ),
108
101
get_behavior_velocity_module_config (" traffic_light" ),
109
102
get_behavior_velocity_module_config (" virtual_traffic_light" ),
110
- get_behavior_velocity_module_config_no_prefix (" no_drivable_lane" )});
103
+ get_behavior_velocity_module_config (" no_drivable_lane" )});
111
104
112
105
// TODO(Takagi, Isamu): set launch_modules
113
106
// TODO(Kyoichi Sugahara) set to true launch_virtual_traffic_light
0 commit comments