From 91de24583615ec33c01b0e6bb1bac379408efe3a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 23 Nov 2015 19:26:02 +0100 Subject: [PATCH] Rename function to match naming scheme --- src/storage/backend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/backend.rs b/src/storage/backend.rs index abb00bfe..6c6f57a4 100644 --- a/src/storage/backend.rs +++ b/src/storage/backend.rs @@ -28,7 +28,7 @@ impl StorageBackend { } } - fn getFileList(&self) -> Option> { + fn get_file_ids(&self) -> Option> { let list = glob(&self.basepath[..]); if let Ok(globlist) = list {