Remove unused imports

This commit is contained in:
Philip Kristoffersen
2021-09-25 11:54:03 +02:00
parent caba0e459d
commit d634a26035
6 changed files with 105 additions and 90 deletions
+4 -2
View File
@@ -1,6 +1,7 @@
use super::{EpicGamesLauncherSettings, ManifestItem};
use std::env::{self, VarError};
use std::error::Error;
#[cfg(target_os = "windows")]
use std::env::{self};
use std::fs::{DirEntry, File};
use std::io::BufReader;
use std::path::Path;
@@ -9,6 +10,7 @@ use failure::*;
#[derive(Debug, Fail)]
pub enum EpicGamesManifestsError {
#[cfg(target_os = "linux")]
#[fail(display = "Path to EpicGamesLauncher not defined, it must be defined on linux")]
PathNotDefined,