diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-09-11 21:55:12 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-09-11 21:55:12 -0400 |
| commit | f97028985a477d46fd35c7b897ce95dc7887904c (patch) | |
| tree | 435ce9340a3ca4f2acf852ede783deaff3afd156 | |
| parent | b16742b0e782bc795fa748d46c3eb6438fb19adc (diff) | |
Remove the now-unused `timestamp()` method from RequestedAt.
Access its contents using pattern matching, or reinstate the method as needed.
| -rw-r--r-- | src/clock.rs | 4 |
1 files changed, 0 insertions, 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<Utc> { - self.0 - } } #[async_trait::async_trait] |
