Skip to content

Commit

Permalink
removed unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bananasmoothii committed Oct 12, 2023
1 parent 5e29964 commit 13d965c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/game/connect4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ impl ConnectFour {
if let Some(cell_player) = cell {
let cell_player_u8 = cell_player.get();
if strike_player == cell_player_u8 {
let before4 = || line_iterator.get_with_offset(-4);
let before3 = || line_iterator.get_with_offset(-3);
let before2 = || line_iterator.get_with_offset(-2);
// let before1 = || line_iterator.get_with_offset(-1);
Expand Down

0 comments on commit 13d965c

Please sign in to comment.