Rename function to match naming scheme

This commit is contained in:
Matthias Beyer 2015-11-23 19:26:02 +01:00
parent b8fa7c5696
commit 91de245836

View file

@ -28,7 +28,7 @@ impl StorageBackend {
}
}
fn getFileList(&self) -> Option<Vec<FileID>> {
fn get_file_ids(&self) -> Option<Vec<FileID>> {
let list = glob(&self.basepath[..]);
if let Ok(globlist) = list {