diff options
Diffstat (limited to 'src/output/formats.rs')
-rw-r--r-- | src/output/formats.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/output/formats.rs b/src/output/formats.rs index fe6e982..a5171a8 100644 --- a/src/output/formats.rs +++ b/src/output/formats.rs @@ -10,13 +10,6 @@ pub trait Format: Sync + Send { } -impl<T: Format + ?Sized> Format for Box<T> { - fn format_result(&self, item: &LogResult) -> String { - (&*self).format_result(item) - } -} - - /// The human readable, colored format. #[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)] pub struct HumanReadable; |