diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-08-15 05:32:51 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-08-18 19:37:42 +0530 |
commit | 19241c95f7b2aa0c781de54b5fba0913b5614b4d (patch) | |
tree | cc26d9c5da124dec64ea461df5e6ce7b618ac7ba /components/script/dom/virtualmethods.rs | |
parent | a53b86f1073a1c7d331cfc7630d01a5687790307 (diff) | |
download | servo-19241c95f7b2aa0c781de54b5fba0913b5614b4d.tar.gz servo-19241c95f7b2aa0c781de54b5fba0913b5614b4d.zip |
Cleanup NodeIterator, Range, ServoHTMLParser, TextEncoder, URLHelper, URL, VirtualMethods
Diffstat (limited to 'components/script/dom/virtualmethods.rs')
-rw-r--r-- | components/script/dom/virtualmethods.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/virtualmethods.rs b/components/script/dom/virtualmethods.rs index b67cbb69d4f..437f39422c6 100644 --- a/components/script/dom/virtualmethods.rs +++ b/components/script/dom/virtualmethods.rs @@ -48,7 +48,7 @@ use string_cache::Atom; pub trait VirtualMethods { /// Returns self as the superclass of the implementation for this trait, /// if any. - fn super_type<'b>(&'b self) -> Option<&'b VirtualMethods>; + fn super_type(&self) -> Option<&VirtualMethods>; /// Called when changing or adding attributes, after the attribute's value /// has been updated. |