Merge pull request #227 from gwilymk/fix-new-clippy-lint

Remove pointless 'a
This commit is contained in:
Gwilym Kuiper 2022-05-12 20:54:23 +01:00 committed by GitHub
commit ece73dd975
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -530,7 +530,7 @@ where
}
}
impl<'a, K, V> HashMap<K, V>
impl<K, V> HashMap<K, V>
where
K: Hash + Eq,
{

View file

@ -607,7 +607,7 @@ enum UpdateState {
Complete,
}
impl<'a, 'b, 'c> PlayingLevel<'a, 'b> {
impl<'a, 'b> PlayingLevel<'a, 'b> {
fn open_level(
level: &'a Level,
object_control: &'a ObjectController,