Fix: FileAbstraction::remove_file(): Add implementation

This commit is contained in:
Matthias Beyer 2016-09-21 09:46:07 +02:00
parent babf74e1e5
commit 61201082c8

View file

@ -62,7 +62,8 @@ mod fs {
}; };
} }
pub fn remove_file(_: &PathBuf) -> Result<(), SE> { pub fn remove_file(path: &PathBuf) -> Result<(), SE> {
MAP.lock().unwrap().remove(path);
Ok(()) Ok(())
} }