diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2019-01-03 16:29:49 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2019-01-04 15:05:07 -0800 |
commit | 611dc4bc70bf654ab52d9d88f29247c82b142c22 (patch) | |
tree | 7bc93e672a4d62ca7ab4eb28b2de68f3faeb9064 /components/script/dom/testworklet.rs | |
parent | 6df1c6d7e71794fda5dd7c49c538baa27bdcb1cb (diff) | |
download | servo-611dc4bc70bf654ab52d9d88f29247c82b142c22.tar.gz servo-611dc4bc70bf654ab52d9d88f29247c82b142c22.zip |
Remove now-unnecessary must_root and allow(unrooted_must_root) annotations
Diffstat (limited to 'components/script/dom/testworklet.rs')
-rw-r--r-- | components/script/dom/testworklet.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/dom/testworklet.rs b/components/script/dom/testworklet.rs index a30c4658ac1..849ee8272ff 100644 --- a/components/script/dom/testworklet.rs +++ b/components/script/dom/testworklet.rs @@ -51,7 +51,6 @@ impl TestWorklet { } impl TestWorkletMethods for TestWorklet { - #[allow(unrooted_must_root)] fn AddModule(&self, moduleURL: USVString, options: &WorkletOptions) -> Rc<Promise> { self.worklet.AddModule(moduleURL, options) } |