diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-06 13:21:59 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-06 13:21:59 +0100 |
commit | a9015d61a7d7d389849d64a4497eda5343d4ecdc (patch) | |
tree | 10563bcfe96d6eff3049b8e5b674aadbdfabe048 /lib/public | |
parent | 9fa09b67e636191791d0b896d83f04c0e0190cf6 (diff) | |
parent | fb76d7de69e0f13f196a644cfded0a6e079e7200 (diff) | |
download | nextcloud-server-a9015d61a7d7d389849d64a4497eda5343d4ecdc.tar.gz nextcloud-server-a9015d61a7d7d389849d64a4497eda5343d4ecdc.zip |
Merge pull request #22166 from owncloud/remove-local-folder
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 5b10c966a1f..a638ddd3021 100644 --- a/lib/public/files/storage/istorage.php +++ b/lib/public/files/storage/istorage.php @@ -325,16 +325,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 |