diff --git a/src/command/mod.rs b/src/command/mod.rs index 23d2b3a..1c47613 100644 --- a/src/command/mod.rs +++ b/src/command/mod.rs @@ -90,11 +90,3 @@ impl Command for UnixProgram { } } } - -struct Nothing; - -impl Command for Nothing { - fn spawn(&mut self) -> ExitCode { - ExitCode::success() - } -}