Remove now unnecessary explicit dyn casts

Rust-analyzer used to not infer this, seems like now it does.
This commit is contained in:
Robbert van der Helm
2022-05-24 23:55:48 +02:00
parent ed9ee2c188
commit 535ae1260e
8 changed files with 8 additions and 16 deletions

View File

@@ -96,8 +96,7 @@ impl Plugin for Stft {
const SAMPLE_ACCURATE_AUTOMATION: bool = true;
fn params(&self) -> Arc<dyn Params> {
// The explicit cast is not needed, but Rust Analyzer gets very upset when you don't do it
self.params.clone() as Arc<dyn Params>
self.params.clone()
}
fn accepts_bus_config(&self, config: &BusConfig) -> bool {