Remove unused imports

This commit is contained in:
Matthias Beyer 2017-09-22 14:25:44 +02:00
parent 5cf4df474a
commit dfd1d7b96e
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,7 @@ extern crate toml_query;
#[macro_use] extern crate error_chain;
extern crate libimagstore;
#[macro_use] extern crate libimagerror;
extern crate libimagerror;
#[cfg(test)]
extern crate env_logger;

View File

@ -24,7 +24,6 @@ use toml::Value;
use error::GPSErrorKind as GPSEK;
use error::GPSError as GPSE;
use error::Result;
use error::ResultExt;
pub trait FromValue : Sized {
fn from_value(v: &Value) -> Result<Self>;