diff --git a/src/traits.rs b/src/traits.rs index 1d8d142..9c85b40 100644 --- a/src/traits.rs +++ b/src/traits.rs @@ -90,19 +90,6 @@ impl Step where F: Fail, { - /// Creates a new `Step` from the given collections. - pub fn new( - output: Vec, - fault_log: FaultLog, - messages: Vec>, - ) -> Self { - Step { - output, - fault_log, - messages, - } - } - /// Returns the same step, with the given additional output. pub fn with_output>>(mut self, output: T) -> Self { self.output.extend(output.into());