diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-05-17 14:00:07 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-05-18 09:57:22 +0200 |
commit | 3ea0c26e90abd451f637f378065f9873988cc30b (patch) | |
tree | 1abc13bc353f4c7464ef99758dc4814af4c37efe /components/script/dom | |
parent | d1eef9d08a4dc3c7ff057797281d2b4f8d4f71c7 (diff) | |
download | servo-3ea0c26e90abd451f637f378065f9873988cc30b.tar.gz servo-3ea0c26e90abd451f637f378065f9873988cc30b.zip |
Silence a warning in script::dom::mutationobserver
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/mutationobserver.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/mutationobserver.rs b/components/script/dom/mutationobserver.rs index b174ae4d11f..48c8fe24b87 100644 --- a/components/script/dom/mutationobserver.rs +++ b/components/script/dom/mutationobserver.rs @@ -9,7 +9,7 @@ use dom::bindings::codegen::Bindings::MutationObserverBinding::MutationCallback; use dom::bindings::codegen::Bindings::MutationObserverBinding::MutationObserverBinding::MutationObserverMethods; use dom::bindings::codegen::Bindings::MutationObserverBinding::MutationObserverInit; use dom::bindings::error::{Error, Fallible}; -use dom::bindings::js::{JS, Root}; +use dom::bindings::js::Root; use dom::bindings::reflector::{Reflector, reflect_dom_object}; use dom::bindings::str::DOMString; use dom::mutationrecord::MutationRecord; |