From e573af3206af4352ed5c4f4c8edbf2436e71bf3c Mon Sep 17 00:00:00 2001 From: Leo <47278525+LeoUCon@users.noreply.github.com> Date: Mon, 11 Oct 2021 00:27:47 +0100 Subject: [PATCH] Remove the NoOp message type from Game.elm (#73) --- src/Game.elm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Game.elm b/src/Game.elm index dae8b42..3a6a8da 100644 --- a/src/Game.elm +++ b/src/Game.elm @@ -107,7 +107,6 @@ type Msg | RestartWanted | ComputerSelectedCell Cellname | ComputerSelectedPiece Gamepiece - | NoOp @@ -161,9 +160,6 @@ update msg (Model model) = ( RestartWanted, _ ) -> init |> noCmds - ( NoOp, _ ) -> - Model model |> noCmds - _ -> Model model |> noCmds