diff options
author | Ms2ger <Ms2ger@gmail.com> | 2015-12-20 22:26:07 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2015-12-20 22:26:07 +0100 |
commit | 0cc75b731c1668b5536fd956846ffa18dd16bbcb (patch) | |
tree | cba65f0272111ea4a53e20f548ee861c1e7345cb | |
parent | 5b91daa92378d3b9fe80b2fc8f8072085d4949b3 (diff) | |
download | servo-0cc75b731c1668b5536fd956846ffa18dd16bbcb.tar.gz servo-0cc75b731c1668b5536fd956846ffa18dd16bbcb.zip |
Remove some unused imports.
-rw-r--r-- | components/msg/compositor_msg.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/msg/compositor_msg.rs b/components/msg/compositor_msg.rs index ca2a68d55bd..7c1d615fd06 100644 --- a/components/msg/compositor_msg.rs +++ b/components/msg/compositor_msg.rs @@ -3,9 +3,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use azure::azure_hl::Color; -use constellation_msg::{Key, KeyModifiers, KeyState, PipelineId}; -use euclid::{Matrix4, Point2D, Rect}; -use ipc_channel::ipc::IpcSender; +use constellation_msg::PipelineId; +use euclid::{Matrix4, Rect}; use std::fmt::{self, Debug, Formatter}; /// A newtype struct for denoting the age of messages; prevents race conditions. |