From 0d35d7fbafec503d26494d59cc40e634d2147074 Mon Sep 17 00:00:00 2001 From: tottoto Date: Tue, 10 Jan 2023 02:49:31 +0900 Subject: [PATCH] chore(tonic): Remove outdated allow lint (#1222) --- tonic/src/transport/error.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tonic/src/transport/error.rs b/tonic/src/transport/error.rs index 26ba40d..d2a1c7b 100644 --- a/tonic/src/transport/error.rs +++ b/tonic/src/transport/error.rs @@ -1,8 +1,3 @@ -// TODO: remove this when we use errors throughout, -// there are some that are only used under the TLS feature -// these probably should be scoped to a `TLSError` enum. -#![allow(dead_code)] - use std::{error::Error as StdError, fmt}; type Source = Box;