From b0d33e76ec37ad32dca21cb94460f77d54b7d266 Mon Sep 17 00:00:00 2001 From: Denis Kolodin Date: Tue, 1 Nov 2016 11:19:08 +0300 Subject: [PATCH] Remove unused metadata import --- src/utils/fs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/fs.rs b/src/utils/fs.rs index fb8ac4e2..858f1e83 100644 --- a/src/utils/fs.rs +++ b/src/utils/fs.rs @@ -1,7 +1,7 @@ use std::path::{Path, Component}; use std::error::Error; use std::io::{self, Read}; -use std::fs::{self, metadata, File}; +use std::fs::{self, File}; /// Takes a path to a file and try to read the file into a String