From 46de65ae4c2ac40d708055156e12c22e2ce0d3a6 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Mon, 22 Jan 2024 14:54:36 +0000 Subject: [PATCH] Revert: Convert EspIOError back to EspError --- src/io.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/io.rs b/src/io.rs index 13156baa9..aabcfc877 100644 --- a/src/io.rs +++ b/src/io.rs @@ -21,12 +21,6 @@ impl From for EspIOError { } } -impl From for EspError { - fn from(e: EspIOError) -> Self { - Self(e.0) - } -} - impl Display for EspIOError { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { self.0.fmt(f)