From 689ec951380cd16c1db66782032dcce842e0a91c Mon Sep 17 00:00:00 2001 From: Sympatron GmbH <35803463+Sympatron@users.noreply.github.com> Date: Wed, 2 Oct 2024 11:25:56 +0200 Subject: [PATCH] Remove comment about embedded_io::ErrorKind::TimedOut --- libosdp/src/channel.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/libosdp/src/channel.rs b/libosdp/src/channel.rs index c33c978..eace4f7 100644 --- a/libosdp/src/channel.rs +++ b/libosdp/src/channel.rs @@ -44,8 +44,6 @@ impl From for ChannelError { impl From for ChannelError { fn from(value: E) -> Self { match value.kind() { - //TODO determine if this is the correct error kind - // embedded_io::ErrorKind::TimedOut => ChannelError::WouldBlock, _ => ChannelError::TransportError, } }