diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-01 12:43:38 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-01 12:43:38 -0500 |
commit | 3b67613afc6d0b74c0e49e567f5e22ec020172d3 (patch) | |
tree | d6a2b8ba5f432a123ab5c6230cb2ba92a13939fd /apps/files_sharing/lib/sharedstorage.php | |
parent | f4e4a06826459befc4a7df429fe02081a14348f3 (diff) | |
download | nextcloud-server-3b67613afc6d0b74c0e49e567f5e22ec020172d3.tar.gz nextcloud-server-3b67613afc6d0b74c0e49e567f5e22ec020172d3.zip |
Remove Shared_Scanner and add Shared_Watcher instead
Diffstat (limited to 'apps/files_sharing/lib/sharedstorage.php')
-rw-r--r-- | apps/files_sharing/lib/sharedstorage.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 3a1d7ef101a..8504a2d8944 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -405,14 +405,14 @@ class Shared extends \OC\Files\Storage\Common { return new \OC\Files\Cache\Shared_Cache($this); } - public function getScanner(){ - return new \OC\Files\Cache\Shared_Scanner($this); - } - public function getPermissionsCache() { return new \OC\Files\Cache\Shared_Permissions($this); } + public function getWatcher() { + return new \OC\Files\Cache\Shared_Watcher($this); + } + public function getOwner($path) { if ($path == '') { return false; |