mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Remove an unused lifetime parameter from Element::get_attribute.
This commit is contained in:
parent
7f13566d57
commit
871d2f796c
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ impl<'self> Element {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_attribute<'a>(&'a self,
|
pub fn get_attribute(&self,
|
||||||
namespace_url: Option<DOMString>,
|
namespace_url: Option<DOMString>,
|
||||||
name: &str) -> Option<@mut Attr> {
|
name: &str) -> Option<@mut Attr> {
|
||||||
let namespace = Namespace::from_str(namespace_url);
|
let namespace = Namespace::from_str(namespace_url);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue