Remove "TODO"-comment

This commit is contained in:
Matthias Beyer 2017-06-12 19:29:57 +02:00
parent a9d2d7c354
commit ac8ea872cb
1 changed files with 0 additions and 4 deletions

View File

@ -83,10 +83,6 @@ pub use self::fs::FSFileAbstractionInstance;
pub use self::inmemory::InMemoryFileAbstraction;
pub use self::inmemory::InMemoryFileAbstractionInstance;
// TODO:
// This whole thing can be written better with a trait based mechanism that is embedded into the
// store. However it would mean rewriting most things to be generic which can be a pain in the ass.
/// An abstraction trait over filesystem actions
pub trait FileAbstraction : Debug {
fn remove_file(&self, path: &PathBuf) -> Result<(), SE>;