From f97028985a477d46fd35c7b897ce95dc7887904c Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 11 Sep 2024 21:55:12 -0400 Subject: Remove the now-unused `timestamp()` method from RequestedAt. Access its contents using pattern matching, or reinstate the method as needed. --- src/clock.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/clock.rs b/src/clock.rs index e53d825..84fcaf6 100644 --- a/src/clock.rs +++ b/src/clock.rs @@ -17,10 +17,6 @@ impl RequestedAt { fn now() -> Self { Self(Utc::now()) } - - pub fn timestamp(&self) -> DateTime { - self.0 - } } #[async_trait::async_trait] -- cgit v1.2.3