summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/filestorage/local.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php
index 27794fe17c0..44a2ab0f634 100644
--- a/lib/filestorage/local.php
+++ b/lib/filestorage/local.php
@@ -20,9 +20,6 @@ class OC_Filestorage_Local extends OC_Filestorage{
public function opendir($path){
return opendir($this->datadir.$path);
}
- public function readdir($handle){
- return readdir($handle);
- }
public function is_dir($path){
if(substr($path,-1)=='/'){
$path=substr($path,0,-1);