diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-07-19 10:26:09 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-07-19 10:28:12 +0200 |
commit | 030d85bc9cc8328e4a6db57b255abd541e05b643 (patch) | |
tree | 9dcee322f1e0332eaaf6f6c78dda8f1051adc147 | |
parent | 4d1d82e2d7252a0b993fcb3c6bf9563db2372d3a (diff) | |
download | nextcloud-server-030d85bc9cc8328e4a6db57b255abd541e05b643.tar.gz nextcloud-server-030d85bc9cc8328e4a6db57b255abd541e05b643.zip |
Remove unused functions
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
-rw-r--r-- | lib/private/Files/Filesystem.php | 8 | ||||
-rw-r--r-- | lib/private/Files/View.php | 9 |
2 files changed, 0 insertions, 17 deletions
diff --git a/lib/private/Files/Filesystem.php b/lib/private/Files/Filesystem.php index 0ebf23818b4..caf23afba11 100644 --- a/lib/private/Files/Filesystem.php +++ b/lib/private/Files/Filesystem.php @@ -646,14 +646,6 @@ class Filesystem { return self::$defaultInstance->rmdir($path); } - static public function opendir($path) { - return self::$defaultInstance->opendir($path); - } - - static public function readdir($path) { - return self::$defaultInstance->readdir($path); - } - static public function is_dir($path) { return self::$defaultInstance->is_dir($path); } diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index a78f423e7cb..c384d07c037 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -367,15 +367,6 @@ class View { } /** - * @param $handle - * @return mixed - */ - public function readdir($handle) { - $fsLocal = new Storage\Local(array('datadir' => '/')); - return $fsLocal->readdir($handle); - } - - /** * @param string $path * @return bool|mixed */ |