simplified by entirely removing DataRef

This commit is contained in:
Schrottkatze 2024-02-23 12:46:39 +01:00
commit 911339fc2a
No known key found for this signature in database
6 changed files with 19 additions and 69 deletions

View file

@ -37,7 +37,7 @@ impl Available {
#[must_use]
pub fn pick(&self) -> Box<dyn Evaluator> {
match self {
Self::Debug => Box::new(kind::debug::Evaluator::default()),
Self::Debug => Box::<kind::debug::Evaluator>::default(),
}
}
}