From 7c1a8a542c19e92d4e89eb62e54f0f47fe88f3b0 Mon Sep 17 00:00:00 2001 From: flip1995 Date: Tue, 27 Aug 2019 10:48:08 +0200 Subject: [PATCH] [Auto] lib/entry/annotation: Fix Clippy warnings Signed-off-by: flip1995 Signed-off-by: Matthias Beyer --- lib/entry/libimagentryannotation/src/annotateable.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/entry/libimagentryannotation/src/annotateable.rs b/lib/entry/libimagentryannotation/src/annotateable.rs index 2d91cfbc..2380cf0c 100644 --- a/lib/entry/libimagentryannotation/src/annotateable.rs +++ b/lib/entry/libimagentryannotation/src/annotateable.rs @@ -54,10 +54,10 @@ impl Annotateable for Entry { store.retrieve(crate::module_path::new_id(ann_name.clone())?) .and_then(|mut anno| { { - let _ = anno.set_isflag::()?; + anno.set_isflag::()?; let _ = anno .get_header_mut() - .insert("annotation.name", Value::String(String::from(ann_name)))?; + .insert("annotation.name", Value::String(ann_name))?; } Ok(anno) }) @@ -74,7 +74,7 @@ impl Annotateable for Entry { // exist. fn denotate<'a>(&mut self, store: &'a Store, ann_name: &str) -> Result>> { if let Some(mut annotation) = store.get(crate::module_path::new_id(ann_name)?)? { - let _ = self.remove_link(&mut annotation)?; + self.remove_link(&mut annotation)?; Ok(Some(annotation)) } else { // error: annotation does not exist