mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
clippy: Fix dereferenced warning (#31758)
This commit is contained in:
parent
d0fcbb0898
commit
676f655647
1 changed files with 1 additions and 1 deletions
|
@ -1094,7 +1094,7 @@ impl Node {
|
|||
|
||||
pub fn remove_self(&self) {
|
||||
if let Some(ref parent) = self.GetParentNode() {
|
||||
Node::remove(self, &parent, SuppressObserver::Unsuppressed);
|
||||
Node::remove(self, parent, SuppressObserver::Unsuppressed);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue