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 {
1271
1271
type Merged = Id3v2Tag ;
1272
1272
1273
1273
fn merge_tag ( self , mut tag : Tag ) -> Id3v2Tag {
1274
- fn join_text_items < ' a > (
1274
+ fn join_text_items (
1275
1275
tag : & mut Tag ,
1276
1276
keys : impl IntoIterator < Item = ItemKey > ,
1277
1277
) -> Option < String > {
Original file line number Diff line number Diff line change @@ -744,7 +744,7 @@ impl SplitTag for Ilst {
744
744
_ => {
745
745
return true ; // Keep atom
746
746
} ,
747
- } ;
747
+ }
748
748
749
749
tag. items . push ( tag_item) ;
750
750
false // Atom consumed
Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ impl Tag {
465
465
}
466
466
467
467
/// 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 < ' _ > {
469
469
self . take ( key) . filter_map ( |i| i. item_value . into_string ( ) )
470
470
}
471
471
You can’t perform that action at this time.
0 commit comments