From 6d454efaf109c73a0446e1716725054f93694329 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Thu, 13 Jun 2024 15:01:07 -0600 Subject: [PATCH] Remove unused code --- odilia/src/tower/handlers.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/odilia/src/tower/handlers.rs b/odilia/src/tower/handlers.rs index 8d6a4a2f..6c5d3980 100644 --- a/odilia/src/tower/handlers.rs +++ b/odilia/src/tower/handlers.rs @@ -45,19 +45,6 @@ where } } -/* -impl AsyncTryFrom<(E, Arc)> for CacheEvent -where - E: EventProperties + Debug, -{ - type Error = Error; - type Future = impl Future>; - fn try_from_async((ev, cache): (E, Arc)) -> Self::Future { - CacheEvent::::from_event(ev, cache) - } -} -*/ - type Response = Vec; type Request = Event; type Error = OdiliaError;