From 5466693c1b0cafe54b60843f8c61b3d4cc9f2fca Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 23 May 2025 18:39:38 -0700 Subject: [PATCH] [position] Remove empty implementation of Position::unmake_move --- position/src/position/make_move.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/position/src/position/make_move.rs b/position/src/position/make_move.rs index a65faf2..3c3ad3b 100644 --- a/position/src/position/make_move.rs +++ b/position/src/position/make_move.rs @@ -103,10 +103,6 @@ impl Position { unreachable!(); } - - pub fn unmake_move(&mut self, ply: &Move) -> Result<(), UnmakeMoveError> { - Ok(()) - } } impl Position {