From 2a0f11cca85c2686cefcef65105c7c223115d9e4 Mon Sep 17 00:00:00 2001 From: Ahurac Date: Thu, 11 Apr 2024 01:34:58 +0200 Subject: [PATCH] command : suppression fonction en commentaire --- src/command.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/command.rs b/src/command.rs index 770b989..0ccccf5 100644 --- a/src/command.rs +++ b/src/command.rs @@ -34,15 +34,6 @@ impl CommandSequence { next_command: None, } } - - /* - pub fn add(&self, command: &dyn Command) { - if self.command.is_none() { - let my_box = Box::new(command.to_owned()); - self.command = Some(my_box); - } - } - */ } impl Command for CommandSequence {