From 8ee999b73f987d5273e307f580c2880c7a9c4193 Mon Sep 17 00:00:00 2001 From: Andreas Fackler Date: Wed, 7 Aug 2019 11:29:24 +0200 Subject: [PATCH] Remove unused Step::new. --- src/traits.rs | 13 ------------- 1 file changed, 13 deletions(-) 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());