chore(bindings): Remove a From<JoinHandle> for TaskHandle impl.

This implementation is never used.
This commit is contained in:
Ivan Enderlin
2023-03-01 16:42:09 +01:00
parent 9b1c5079e6
commit 4212980f32

View File

@@ -50,12 +50,6 @@ impl TaskHandle {
}
}
impl From<JoinHandle<()>> for TaskHandle {
fn from(value: JoinHandle<()>) -> Self {
Self::with_handle(value)
}
}
#[uniffi::export]
impl TaskHandle {
pub fn cancel(&self) {