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