mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
clippy: Fix needless borrow warnings (#31813)
This commit is contained in:
parent
694e86ecff
commit
3e63f8d6ee
42 changed files with 151 additions and 157 deletions
|
@ -259,7 +259,7 @@ impl DocumentOrShadowRoot {
|
|||
self, to_unregister, id
|
||||
);
|
||||
let mut id_map = id_map.borrow_mut();
|
||||
let is_empty = match id_map.get_mut(&id) {
|
||||
let is_empty = match id_map.get_mut(id) {
|
||||
None => false,
|
||||
Some(elements) => {
|
||||
let position = elements
|
||||
|
@ -271,7 +271,7 @@ impl DocumentOrShadowRoot {
|
|||
},
|
||||
};
|
||||
if is_empty {
|
||||
id_map.remove(&id);
|
||||
id_map.remove(id);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue