diff options
author | Per Lundberg <perlun@gmail.com> | 2016-05-15 22:24:26 +0300 |
---|---|---|
committer | Per Lundberg <perlun@gmail.com> | 2016-05-15 22:24:26 +0300 |
commit | 2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2 (patch) | |
tree | da7cdf137b99a2da034c92e455317143781863d6 /components/script/dom/domquad.rs | |
parent | 7bede60272a79fe094ea81979044b4d6eceeada4 (diff) | |
download | servo-2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2.tar.gz servo-2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2.zip |
Removed unused imports
This fixes #11185.
Diffstat (limited to 'components/script/dom/domquad.rs')
-rw-r--r-- | components/script/dom/domquad.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/script/dom/domquad.rs b/components/script/dom/domquad.rs index 66b179e2523..dbfb1f201d4 100644 --- a/components/script/dom/domquad.rs +++ b/components/script/dom/domquad.rs @@ -3,10 +3,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use dom::bindings::codegen::Bindings::DOMPointBinding::{DOMPointInit, DOMPointMethods}; -use dom::bindings::codegen::Bindings::DOMPointReadOnlyBinding::DOMPointReadOnlyMethods; use dom::bindings::codegen::Bindings::DOMQuadBinding::{DOMQuadInit, DOMQuadMethods, Wrap}; -use dom::bindings::codegen::Bindings::DOMRectBinding::DOMRectMethods; -use dom::bindings::codegen::Bindings::DOMRectReadOnlyBinding::{DOMRectInit, DOMRectReadOnlyMethods}; +use dom::bindings::codegen::Bindings::DOMRectReadOnlyBinding::{DOMRectInit}; use dom::bindings::error::Fallible; use dom::bindings::global::GlobalRef; use dom::bindings::js::{Root, JS}; |