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 {