remove unreachable path

This commit is contained in:
Vinzenz Schroeter 2024-11-13 18:13:26 +01:00
parent 2e8a61b627
commit bb34541077

View file

@ -153,10 +153,6 @@ impl Connection {
let _ = data;
Ok(())
}
#[allow(unreachable_patterns)] // depends on features
_ => {
panic!("Connection {:?} does not support immutable send", self)
}
}
}
}