Remove redundant imports

This commit is contained in:
Ben S 2015-05-12 02:59:22 +01:00
parent 4a43aa8db1
commit 02ba026763
3 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,3 @@
use colours::Colours;
use feature::Git;
use file::File;
use file;

View File

@ -3,7 +3,7 @@ use std::env::current_dir;
use std::fs;
use std::io;
use std::os::unix;
use std::os::unix::raw::{blkcnt_t, gid_t, ino_t, mode_t, nlink_t, time_t, uid_t};
use std::os::unix::raw::{blkcnt_t, gid_t, ino_t, nlink_t, time_t, uid_t};
use std::os::unix::fs::{MetadataExt, PermissionsExt};
use std::path::{Component, Path, PathBuf};

View File

@ -8,9 +8,8 @@ use users::{OSUsers, Users};
use super::filename;
use ansi_term::{ANSIString, ANSIStrings, Style};
use ansi_term::{ANSIStrings, Style};
use ansi_term::Style::Plain;
use ansi_term::Colour::Fixed;
use locale;