From 2e7706af99953d51f11382e9089af837728c8220 Mon Sep 17 00:00:00 2001 From: flip1995 Date: Tue, 27 Aug 2019 10:23:47 +0200 Subject: [No-auto] lib/domain/todo: Fix Clippy warnings Signed-off-by: flip1995 Signed-off-by: Matthias Beyer --- lib/domain/libimagtodo/src/taskstore.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/domain/libimagtodo/src/taskstore.rs b/lib/domain/libimagtodo/src/taskstore.rs index 3d2c5752..fbddecf6 100644 --- a/lib/domain/libimagtodo/src/taskstore.rs +++ b/lib/domain/libimagtodo/src/taskstore.rs @@ -59,7 +59,7 @@ impl<'a> TaskStore<'a> for Store { .context(err_msg("Error importing")) .map_err(Error::from) .and_then(|t| { - let uuid = t.uuid().clone(); + let uuid = *t.uuid(); self.new_from_twtask(t).map(|t| (t, line, uuid)) }) } @@ -87,7 +87,7 @@ impl<'a> TaskStore<'a> for Store { import_task(s.as_str()) .context(err_msg("Import error")) .map_err(Error::from) - .map(|t| t.uuid().clone()) + .map(|t| *t.uuid()) .and_then(|uuid| self.get_task_from_uuid(uuid)) .and_then(|o| match o { None => Ok(Err(s)), -- cgit v1.2.3