From 7df8dc61774c0f3eba5902632bc2e056d6a536e7 Mon Sep 17 00:00:00 2001 From: Tetsuharu OHZEKI Date: Fri, 11 Dec 2015 09:58:43 -0500 Subject: [PATCH] Fix warning: unused_imports in constellation_msg.rs. --- components/msg/constellation_msg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/msg/constellation_msg.rs b/components/msg/constellation_msg.rs index 7a77b78774a..0469fd95672 100644 --- a/components/msg/constellation_msg.rs +++ b/components/msg/constellation_msg.rs @@ -6,7 +6,7 @@ //! reduce coupling between these two components. use euclid::scale_factor::ScaleFactor; -use euclid::size::{Size2D, TypedSize2D}; +use euclid::size::TypedSize2D; use hyper::header::Headers; use hyper::method::Method; use ipc_channel::ipc::{self, IpcReceiver, IpcSender, IpcSharedMemory};