rt/configuration: Remove unused imports

This commit is contained in:
Matthias Beyer 2016-01-29 23:04:39 +01:00
parent 33b6a89a02
commit cdce1f09e6

View file

@ -1,5 +1,4 @@
use std::default::Default; use std::default::Default;
use std::fmt::{Debug, Display, Formatter, Error};
use std::path::PathBuf; use std::path::PathBuf;
use std::result::Result as RResult; use std::result::Result as RResult;
@ -159,7 +158,6 @@ impl Configuration {
* Tests several variants for the config file path and uses the first one which works. * Tests several variants for the config file path and uses the first one which works.
*/ */
fn fetch_config(rtp: &PathBuf) -> Result<Config> { fn fetch_config(rtp: &PathBuf) -> Result<Config> {
use std::process::exit;
use std::env; use std::env;
use xdg_basedir; use xdg_basedir;