diff options
Diffstat (limited to 'components/script/dom/htmlmetaelement.rs')
-rw-r--r-- | components/script/dom/htmlmetaelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlmetaelement.rs b/components/script/dom/htmlmetaelement.rs index 65c870221f7..87d6c782c93 100644 --- a/components/script/dom/htmlmetaelement.rs +++ b/components/script/dom/htmlmetaelement.rs @@ -227,7 +227,7 @@ impl VirtualMethods for HTMLMetaElement { } fn bind_to_tree(&self, context: &BindContext) { - if let Some(ref s) = self.super_type() { + if let Some(s) = self.super_type() { s.bind_to_tree(context); } @@ -245,7 +245,7 @@ impl VirtualMethods for HTMLMetaElement { } fn unbind_from_tree(&self, context: &UnbindContext) { - if let Some(ref s) = self.super_type() { + if let Some(s) = self.super_type() { s.unbind_from_tree(context); } |