diff options
author | Anthony Ramine <nox@nox.paris> | 2020-03-31 15:23:06 +0200 |
---|---|---|
committer | Anthony Ramine <nox@nox.paris> | 2020-03-31 15:23:06 +0200 |
commit | fb1ff3f097c0c8a994c9e7c4bb72c3ba5b64492d (patch) | |
tree | 296daee03882ec8fe7ea64c9a9b33ced62cf49ab /components | |
parent | 6fe294fa5bab1b0ccd80d6dfb53be85adfaec4ad (diff) | |
download | servo-fb1ff3f097c0c8a994c9e7c4bb72c3ba5b64492d.tar.gz servo-fb1ff3f097c0c8a994c9e7c4bb72c3ba5b64492d.zip |
Remove an obsolete comment
Diffstat (limited to 'components')
-rw-r--r-- | components/script/dom/attr.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/dom/attr.rs b/components/script/dom/attr.rs index cd1a98ad799..e2e8b79f9af 100644 --- a/components/script/dom/attr.rs +++ b/components/script/dom/attr.rs @@ -255,7 +255,6 @@ impl<'dom> AttrHelpersForLayout<'dom> for LayoutDom<'dom, Attr> { #[inline] fn as_tokens(self) -> Option<&'dom [Atom]> { - // This transmute is used to cheat the lifetime restriction. match *self.value() { AttrValue::TokenList(_, ref tokens) => Some(tokens), _ => None, |