command : suppression fonction en commentaire

This commit is contained in:
Ahurac 2024-04-11 01:34:58 +02:00
parent 5f59139c3e
commit 2a0f11cca8

View file

@ -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 {