aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/dropbox.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-11-22 15:24:23 +0100
committerVincent Petry <pvince81@owncloud.com>2013-11-22 18:21:17 +0100
commitc62cce826994291c528e7cc90da5be9fc94ebaf2 (patch)
tree3602d649ca5947113eb36f521aa144194920f43c /apps/files_external/lib/dropbox.php
parenta49e873d3fa513136bfdf1d71bbc2bbcd61d3650 (diff)
downloadnextcloud-server-c62cce826994291c528e7cc90da5be9fc94ebaf2.tar.gz
nextcloud-server-c62cce826994291c528e7cc90da5be9fc94ebaf2.zip
Moved default isReadable/isUpdatable impl into Common class
Also adjusted all ext storage backends to not override these when the default behavior is expected.
Diffstat (limited to 'apps/files_external/lib/dropbox.php')
-rwxr-xr-xapps/files_external/lib/dropbox.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php
index b6deab6e5a7..6e464f4e287 100755
--- a/apps/files_external/lib/dropbox.php
+++ b/apps/files_external/lib/dropbox.php
@@ -146,14 +146,6 @@ class Dropbox extends \OC\Files\Storage\Common {
return false;
}
- public function isReadable($path) {
- return $this->file_exists($path);
- }
-
- public function isUpdatable($path) {
- return $this->file_exists($path);
- }
-
public function file_exists($path) {
if ($path == '' || $path == '/') {
return true;