diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-12-06 19:55:30 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-11 15:44:35 +0100 |
commit | 89bc26210ae653020e5fdaf9696f506c169bffb6 (patch) | |
tree | 7ec3d7e8dd72e166f0df66ed8353ab0a23f7774b | |
parent | eed48c815915cb57e2e6af75ad052fefdf922a73 (diff) | |
download | nextcloud-server-89bc26210ae653020e5fdaf9696f506c169bffb6.tar.gz nextcloud-server-89bc26210ae653020e5fdaf9696f506c169bffb6.zip |
[files_external] removing function as it's the same in the base class - THX Robin
Conflicts:
apps/files_external/lib/smb.php
-rw-r--r-- | apps/files_external/lib/smb.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index 96778b0b2e1..58abcd43f5a 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -59,11 +59,6 @@ class SMB extends \OC\Files\Storage\StreamWrapper{ } } - public function filetype($path) { - // using opendir causes the same amount of requests and caches the content of the folder in one go - return (bool)@$this->opendir($path) ? 'dir' : 'file'; - } - /** * check if a file or folder has been updated since $time * @param string $path |