diff options
author | Kishor Bhat <kishorbhat@gmail.com> | 2016-01-17 13:09:03 +0530 |
---|---|---|
committer | Kishor Bhat <kishorbhat@gmail.com> | 2016-01-17 13:17:23 +0530 |
commit | 4c5eeb1f58201f032f096268885bbb216815eacb (patch) | |
tree | 9f668d3dc0e385d0d65eeacda429ece4d622db5c /components/layout/context.rs | |
parent | 5a954d2492195aab2f3bd5a8d2775ef5c586689d (diff) | |
download | servo-4c5eeb1f58201f032f096268885bbb216815eacb.tar.gz servo-4c5eeb1f58201f032f096268885bbb216815eacb.zip |
Remove unused imports in layout
Diffstat (limited to 'components/layout/context.rs')
-rw-r--r-- | components/layout/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/context.rs b/components/layout/context.rs index 766e56d5dce..83f2df1412a 100644 --- a/components/layout/context.rs +++ b/components/layout/context.rs @@ -22,7 +22,7 @@ use std::cell::{RefCell, RefMut}; use std::collections::HashMap; use std::collections::hash_state::DefaultState; use std::rc::Rc; -use std::sync::mpsc::{Sender, channel}; +use std::sync::mpsc::Sender; use std::sync::{Arc, Mutex}; use style::context::{LocalStyleContext, SharedStyleContext, StyleContext}; use style::matching::{ApplicableDeclarationsCache, StyleSharingCandidateCache}; |