chore: Remove unnecessary lifetimes

This commit is contained in:
Kévin Commaille
2024-11-29 12:23:48 +01:00
committed by strawberry
parent 99081fd7d2
commit 13a546056e
6 changed files with 12 additions and 12 deletions

View File

@@ -300,7 +300,7 @@ where
event_id: &'a Id,
}
impl<'a, Id> Ord for TieBreaker<'a, Id>
impl<Id> Ord for TieBreaker<'_, Id>
where
Id: Ord,
{
@@ -320,7 +320,7 @@ where
}
}
impl<'a, Id> PartialOrd for TieBreaker<'a, Id>
impl<Id> PartialOrd for TieBreaker<'_, Id>
where
Id: Ord,
{