diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-02-05 16:48:08 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-02-05 16:48:08 +0100 |
commit | fb76d7de69e0f13f196a644cfded0a6e079e7200 (patch) | |
tree | 9bb6f9a93c76519493f6fce40a795c7f30eda917 /lib/public | |
parent | 7dde2c773f4efee0094176fe76b2c64f4f74a1ea (diff) | |
download | nextcloud-server-fb76d7de69e0f13f196a644cfded0a6e079e7200.tar.gz nextcloud-server-fb76d7de69e0f13f196a644cfded0a6e079e7200.zip |
remove unused Storage->getLocalFolder
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/files/storage.php | 9 | ||||
-rw-r--r-- | lib/public/files/storage/istorage.php | 10 |
2 files changed, 0 insertions, 19 deletions
diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php index 1c125221449..2511690b7d3 100644 --- a/lib/public/files/storage.php +++ b/lib/public/files/storage.php @@ -331,15 +331,6 @@ interface Storage extends IStorage { public function getLocalFile($path); /** - * get the path to a local version of the folder. - * The local version of the folder can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string|false - * @since 6.0.0 - */ - public function getLocalFolder($path); - /** * check if a file or folder has been updated since $time * * @param string $path diff --git a/lib/public/files/storage/istorage.php b/lib/public/files/storage/istorage.php index 4bc5e3536dc..278374f3297 100644 --- a/lib/public/files/storage/istorage.php +++ b/lib/public/files/storage/istorage.php @@ -334,16 +334,6 @@ interface IStorage { public function getLocalFile($path); /** - * get the path to a local version of the folder. - * The local version of the folder can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string|false - * @since 9.0.0 - */ - public function getLocalFolder($path); - - /** * check if a file or folder has been updated since $time * * @param string $path |