Fix: use unimplemented instead of false implementation
This commit is contained in:
parent
8a546dfb26
commit
6926363f70
1 changed files with 2 additions and 2 deletions
|
@ -3,11 +3,11 @@ use std::path::{Path, PathBuf};
|
|||
pub type FileID = String;
|
||||
|
||||
pub fn from_path_string(s: &String) -> FileID {
|
||||
String::from("")
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn from_path(p: &Path) -> FileID {
|
||||
String::from("")
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn from_pathbuf(p: &PathBuf) -> FileID {
|
||||
|
|
Loading…
Reference in a new issue