mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Merge pull request #227 from gwilymk/fix-new-clippy-lint
Remove pointless 'a
This commit is contained in:
commit
ece73dd975
|
@ -530,7 +530,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, K, V> HashMap<K, V>
|
impl<K, V> HashMap<K, V>
|
||||||
where
|
where
|
||||||
K: Hash + Eq,
|
K: Hash + Eq,
|
||||||
{
|
{
|
||||||
|
|
|
@ -607,7 +607,7 @@ enum UpdateState {
|
||||||
Complete,
|
Complete,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, 'b, 'c> PlayingLevel<'a, 'b> {
|
impl<'a, 'b> PlayingLevel<'a, 'b> {
|
||||||
fn open_level(
|
fn open_level(
|
||||||
level: &'a Level,
|
level: &'a Level,
|
||||||
object_control: &'a ObjectController,
|
object_control: &'a ObjectController,
|
||||||
|
|
Loading…
Reference in a new issue