diff options
author | Brandon Fairchild <csbit32@gmail.com> | 2016-01-16 14:16:03 -0500 |
---|---|---|
committer | Brandon Fairchild <csbit32@gmail.com> | 2016-01-16 14:16:03 -0500 |
commit | dce7c7bb695dfe13ba2344262deedd3bc83e3823 (patch) | |
tree | 34b188d18aed6fc06ac9158a07256e28fea1854a /components/gfx/paint_thread.rs | |
parent | 5a954d2492195aab2f3bd5a8d2775ef5c586689d (diff) | |
download | servo-dce7c7bb695dfe13ba2344262deedd3bc83e3823.tar.gz servo-dce7c7bb695dfe13ba2344262deedd3bc83e3823.zip |
Remove multiple unused imports in gfx
Fixes #9342.
Diffstat (limited to 'components/gfx/paint_thread.rs')
-rw-r--r-- | components/gfx/paint_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/paint_thread.rs b/components/gfx/paint_thread.rs index 12187a527cc..212ca28eec1 100644 --- a/components/gfx/paint_thread.rs +++ b/components/gfx/paint_thread.rs @@ -23,7 +23,7 @@ use layers::platform::surface::{NativeDisplay, NativeSurface}; use msg::constellation_msg::{ConstellationChan, Failure, PipelineId}; use paint_context::PaintContext; use profile_traits::mem::{self, ReportsChan}; -use profile_traits::time::{self, profile}; +use profile_traits::time; use rand::{self, Rng}; use skia::gl_context::GLContext; use std::borrow::ToOwned; |