From 12bd7aec145c530c5ce468c0609bb83d4e98bfdd Mon Sep 17 00:00:00 2001 From: Fangdun Tsai Date: Mon, 1 Jan 2024 12:28:06 +0800 Subject: [PATCH] chore(core): remove redundance bounds on MapErr --- viz-core/src/handler/map_err.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/viz-core/src/handler/map_err.rs b/viz-core/src/handler/map_err.rs index f7ab25f5..f284ef4b 100644 --- a/viz-core/src/handler/map_err.rs +++ b/viz-core/src/handler/map_err.rs @@ -21,8 +21,6 @@ where I: Send + 'static, H: Handler>, F: FnOnce(E) -> Error + Send + Sync + Copy + 'static, - O: 'static, - E: 'static, { type Output = Result;