Remove unused imports

This commit is contained in:
Alexandre Bury 2017-01-10 17:48:47 -08:00
parent 14f971e2bc
commit 97287a0b0b
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,6 @@
//! Points on the 2D character grid.
use XY;
use direction::Orientation;
use num::traits::Zero;
use std::cmp::{Ordering, max, min};

View File

@ -1,6 +1,6 @@
use {Cursive, Printer};
use Printer;
use align::HAlign;
use std::cmp;
use std::sync::Arc;
@ -10,7 +10,7 @@ use std::thread;
use theme::{ColorStyle, Effect};
use view::View;
pub type CbPromise = Option<Box<Fn(&mut Cursive) + Send>>;
// pub type CbPromise = Option<Box<Fn(&mut Cursive) + Send>>;
/// Atomic counter used by `ProgressBar`.
#[derive(Clone)]