summaryrefslogtreecommitdiffstats
path: root/src/file.rs
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-05-12 02:59:22 +0100
committerBen S <ogham@bsago.me>2015-05-12 02:59:22 +0100
commit02ba0267636f3e1802091c31f1c2d94d4d537e66 (patch)
tree8d17da967a98d326262329b3ac89d49ec88d05a1 /src/file.rs
parent4a43aa8db173df3e5786a58eb08f1b59e2883d30 (diff)
Remove redundant imports
Diffstat (limited to 'src/file.rs')
-rw-r--r--src/file.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file.rs b/src/file.rs
index e728834..200d65f 100644
--- a/src/file.rs
+++ b/src/file.rs
@@ -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};