@@ -1244,8 +1244,6 @@ bool GoalPlannerModule::hasDecidedPath(
1244
1244
const std::shared_ptr<SafetyCheckParams> & safety_check_params,
1245
1245
const std::shared_ptr<GoalSearcherBase> goal_searcher) const
1246
1246
{
1247
- universe_utils::ScopedTimeTrack st (__func__, *time_keeper_);
1248
-
1249
1247
return checkDecidingPathStatus (
1250
1248
planner_data, occupancy_grid_map, parameters, ego_predicted_path_params,
1251
1249
objects_filtering_params, safety_check_params, goal_searcher)
@@ -1261,8 +1259,6 @@ bool GoalPlannerModule::hasNotDecidedPath(
1261
1259
const std::shared_ptr<SafetyCheckParams> & safety_check_params,
1262
1260
const std::shared_ptr<GoalSearcherBase> goal_searcher) const
1263
1261
{
1264
- universe_utils::ScopedTimeTrack st (__func__, *time_keeper_);
1265
-
1266
1262
return checkDecidingPathStatus (
1267
1263
planner_data, occupancy_grid_map, parameters, ego_predicted_path_params,
1268
1264
objects_filtering_params, safety_check_params, goal_searcher)
@@ -1278,8 +1274,6 @@ DecidingPathStatusWithStamp GoalPlannerModule::checkDecidingPathStatus(
1278
1274
const std::shared_ptr<SafetyCheckParams> & safety_check_params,
1279
1275
const std::shared_ptr<GoalSearcherBase> goal_searcher) const
1280
1276
{
1281
- universe_utils::ScopedTimeTrack st (__func__, *time_keeper_);
1282
-
1283
1277
const auto & prev_status = thread_safe_data_.get_prev_data ().deciding_path_status ;
1284
1278
const bool enable_safety_check = parameters.safety_check_params .enable_safety_check ;
1285
1279
@@ -2375,8 +2369,6 @@ std::pair<bool, bool> GoalPlannerModule::isSafePath(
2375
2369
const std::shared_ptr<ObjectsFilteringParams> & objects_filtering_params,
2376
2370
const std::shared_ptr<SafetyCheckParams> & safety_check_params) const
2377
2371
{
2378
- universe_utils::ScopedTimeTrack st (__func__, *time_keeper_);
2379
-
2380
2372
if (!thread_safe_data_.get_pull_over_path ()) {
2381
2373
return {false , false };
2382
2374
}
0 commit comments