Silence warning - we don't use the config yet

This commit is contained in:
Tony Garnock-Jones 2021-11-13 17:06:19 +01:00
parent 76a81623b7
commit 829e826d52
1 changed files with 3 additions and 3 deletions

View File

@ -24,13 +24,13 @@ pub struct CommandLine {
}
pub struct Pid1Listener {
config: Arc<CommandLine>,
// config: Arc<CommandLine>,
}
impl Pid1Listener {
fn new(config: Arc<CommandLine>) -> Self {
fn new(_config: Arc<CommandLine>) -> Self {
Self {
config,
// config,
}
}
}