Skip to content

Commit

Permalink
i'm bad at git
Browse files Browse the repository at this point in the history
  • Loading branch information
sid-parikh committed Jan 27, 2024
1 parent 5751b97 commit 2ff2b87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions soccer/src/soccer/planning/planner/line_kick_path_planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ using namespace rj_geometry;
namespace planning {

Trajectory LineKickPathPlanner::plan(const PlanRequest& plan_request) {
if (plan_request.play_state_ == PlayState::halt() ||
plan_request.play_state_ == PlayState::stop()) {
if (plan_request.play_state == PlayState::halt() ||
plan_request.play_state == PlayState::stop()) {
return Trajectory{};
}

Expand Down
1 change: 0 additions & 1 deletion soccer/src/soccer/planning/planner/plan_request.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ struct PlanRequest {
shell_id(shell_id),
priority(priority),
world_state(world_state),
play_state_(play_state),
play_state(play_state),
debug_drawer(debug_drawer),
ball_sense(ball_sense),
Expand Down

0 comments on commit 2ff2b87

Please sign in to comment.