File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1271,7 +1271,7 @@ impl MergeTag for SplitTagRemainder {
12711271 type Merged = Id3v2Tag ;
12721272
12731273 fn merge_tag ( self , mut tag : Tag ) -> Id3v2Tag {
1274- fn join_text_items < ' a > (
1274+ fn join_text_items (
12751275 tag : & mut Tag ,
12761276 keys : impl IntoIterator < Item = ItemKey > ,
12771277 ) -> Option < String > {
Original file line number Diff line number Diff line change @@ -744,7 +744,7 @@ impl SplitTag for Ilst {
744744 _ => {
745745 return true ; // Keep atom
746746 } ,
747- } ;
747+ }
748748
749749 tag. items . push ( tag_item) ;
750750 false // Atom consumed
Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ impl Tag {
465465 }
466466
467467 /// Removes all items with the specified [`ItemKey`], and filters them through [`ItemValue::into_string`]
468- pub fn take_strings < ' a > ( & ' a mut self , key : ItemKey ) -> impl Iterator < Item = String > + use < ' a > {
468+ pub fn take_strings ( & mut self , key : ItemKey ) -> impl Iterator < Item = String > + use < ' _ > {
469469 self . take ( key) . filter_map ( |i| i. item_value . into_string ( ) )
470470 }
471471
You can’t perform that action at this time.
0 commit comments