mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
ra_db: removed a couple of explicit lifetimes
This commit is contained in:
parent
baf832d6d9
commit
4255bc70e8
1 changed files with 2 additions and 5 deletions
|
@ -165,7 +165,7 @@ impl CrateGraph {
|
|||
self.arena.is_empty()
|
||||
}
|
||||
|
||||
pub fn iter<'a>(&'a self) -> impl Iterator<Item = CrateId> + 'a {
|
||||
pub fn iter(&self) -> impl Iterator<Item = CrateId> + '_ {
|
||||
self.arena.keys().copied()
|
||||
}
|
||||
|
||||
|
@ -183,10 +183,7 @@ impl CrateGraph {
|
|||
Some(crate_id)
|
||||
}
|
||||
|
||||
pub fn dependencies<'a>(
|
||||
&'a self,
|
||||
crate_id: CrateId,
|
||||
) -> impl Iterator<Item = &'a Dependency> + 'a {
|
||||
pub fn dependencies(&self, crate_id: CrateId) -> impl Iterator<Item = &Dependency> {
|
||||
self.arena[&crate_id].dependencies.iter()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue