clean up minor items

This commit is contained in:
steven-omaha
2023-01-10 15:00:21 +01:00
parent 160e4d0b4c
commit 627f66ea35
6 changed files with 6 additions and 33 deletions
-11
View File
@@ -23,17 +23,6 @@ impl Backends {
pub fn iter() -> BackendIter {
BackendIter(Some(Self::Pacman))
}
fn get(&self) -> Box<dyn Backend> {
match self {
Self::Pacman => Box::new(Pacman {
packages: HashSet::new(),
}),
Self::Rust => Box::new(Rust {
packages: HashSet::new(),
}),
}
}
}
#[derive(Debug)]