summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-08-27 19:44:32 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-08-27 19:44:32 +0200
commitaa72b008334d982dc5534bb9c2699dd3751ef02a (patch)
tree798439b73e174cce5e3724b196bda44ca3b8fc26
parentce01861e6ef3b652eeafbef5b87c293b3a971d89 (diff)
Fix: Remove unused imports
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
-rw-r--r--src/repository/fs/mod.rs2
-rw-r--r--src/repository/fs/path.rs3
-rw-r--r--src/repository/fs/representation.rs1
3 files changed, 0 insertions, 6 deletions
diff --git a/src/repository/fs/mod.rs b/src/repository/fs/mod.rs
index f1fce78..5f78b8b 100644
--- a/src/repository/fs/mod.rs
+++ b/src/repository/fs/mod.rs
@@ -8,8 +8,6 @@
// SPDX-License-Identifier: EPL-2.0
//
-#![allow(unused)] // TODO: Remove allow(unused)
-
mod representation;
pub use representation::FileSystemRepresentation;
diff --git a/src/repository/fs/path.rs b/src/repository/fs/path.rs
index b7fb407..284727c 100644
--- a/src/repository/fs/path.rs
+++ b/src/repository/fs/path.rs
@@ -8,11 +8,8 @@
// SPDX-License-Identifier: EPL-2.0
//
-use std::collections::HashMap;
use std::convert::TryFrom;
use std::path::Component;
-use std::path::Path;
-use std::path::PathBuf;
use anyhow::anyhow;
use anyhow::Result;
diff --git a/src/repository/fs/representation.rs b/src/repository/fs/representation.rs
index 5f92ba7..004b4f8 100644
--- a/src/repository/fs/representation.rs
+++ b/src/repository/fs/representation.rs
@@ -11,7 +11,6 @@
use std::collections::HashMap;
use std::convert::TryFrom;
use std::convert::TryInto;
-use std::path::Component;
use std::path::Path;
use std::path::PathBuf;