mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Remove deprecated remove function (#31213)
This commit is contained in:
parent
2fbb120e94
commit
9b6c473695
1 changed files with 3 additions and 1 deletions
|
@ -280,7 +280,9 @@ impl ModuleTree {
|
|||
}
|
||||
|
||||
pub fn remove_incomplete_fetch_url(&self, dependency: ServoUrl) {
|
||||
self.incomplete_fetch_urls.borrow_mut().remove(&dependency);
|
||||
self.incomplete_fetch_urls
|
||||
.borrow_mut()
|
||||
.shift_remove(&dependency);
|
||||
}
|
||||
|
||||
/// recursively checks if all of the transitive descendants are
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue