[Auto] lib/entry/tag: Fix Clippy warnings
Signed-off-by: flip1995 <hello@philkrones.com> Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
c02e6580be
commit
1569442fee
1 changed files with 3 additions and 3 deletions
|
@ -60,7 +60,7 @@ impl Tagable for Entry {
|
|||
self.get_header()
|
||||
.read_partial::<TagHeader>()?
|
||||
.map(|header| {
|
||||
let _ = header.values
|
||||
header.values
|
||||
.iter()
|
||||
.map(is_tag_str)
|
||||
.collect::<Result<_>>()?;
|
||||
|
@ -88,7 +88,7 @@ impl Tagable for Entry {
|
|||
}
|
||||
|
||||
fn add_tag(&mut self, t: Tag) -> Result<()> {
|
||||
let _ = is_tag_str(&t)?;
|
||||
is_tag_str(&t)?;
|
||||
|
||||
let mut tags = self.get_tags()?;
|
||||
debug!("Pushing tag = {:?} to list = {:?}", t, tags);
|
||||
|
@ -97,7 +97,7 @@ impl Tagable for Entry {
|
|||
}
|
||||
|
||||
fn remove_tag(&mut self, t: Tag) -> Result<()> {
|
||||
let _ = is_tag_str(&t)?;
|
||||
is_tag_str(&t)?;
|
||||
|
||||
let mut tags = self.get_tags()?;
|
||||
tags.retain(|tag| *tag != t);
|
||||
|
|
Loading…
Reference in a new issue