diff --git a/src/host/null/mod.rs b/src/host/null/mod.rs index 054008d..84ce071 100644 --- a/src/host/null/mod.rs +++ b/src/host/null/mod.rs @@ -1,5 +1,3 @@ -#![allow(dead_code)] - use BuildStreamError; use DefaultFormatError; use DevicesError; @@ -19,8 +17,6 @@ pub struct Devices; #[derive(Clone, Debug, PartialEq, Eq)] pub struct Device; -pub struct EventLoop; - pub struct Host; #[derive(Debug, Clone, PartialEq, Eq, Hash)] @@ -30,6 +26,7 @@ pub struct SupportedInputFormats; pub struct SupportedOutputFormats; impl Host { + #[allow(dead_code)] pub fn new() -> Result { Ok(Host) } @@ -41,12 +38,6 @@ impl Devices { } } -impl EventLoop { - pub fn new() -> EventLoop { - EventLoop - } -} - impl DeviceTrait for Device { type SupportedInputFormats = SupportedInputFormats; type SupportedOutputFormats = SupportedOutputFormats;