From e81b349658031439be0a479b70af1e3b5a170d61 Mon Sep 17 00:00:00 2001 From: funilrys Date: Mon, 14 Nov 2022 18:51:34 +0100 Subject: [PATCH] Fix linting issue. --- dump/src/reader/v4/tasks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump/src/reader/v4/tasks.rs b/dump/src/reader/v4/tasks.rs index e563274d9..c9920ffd6 100644 --- a/dump/src/reader/v4/tasks.rs +++ b/dump/src/reader/v4/tasks.rs @@ -106,7 +106,7 @@ impl Task { pub fn processed_at(&self) -> Option { match self.events.last() { - Some(TaskEvent::Succeded { result: _, timestamp }) => Some(timestamp.clone()), + Some(TaskEvent::Succeded { result: _, timestamp }) => Some(*timestamp), _ => None, } }