From fb1ff3f097c0c8a994c9e7c4bb72c3ba5b64492d Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Tue, 31 Mar 2020 15:23:06 +0200 Subject: [PATCH] Remove an obsolete comment --- components/script/dom/attr.rs | 1 - 1 file changed, 1 deletion(-) 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,