aboutsummaryrefslogtreecommitdiffstats
path: root/lib/files
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-10-21 00:13:16 +0200
committerRobin Appelman <icewind@owncloud.com>2012-10-21 00:13:16 +0200
commit1901ac8b17c99eef3ccd99edf877fd0a86737d17 (patch)
tree72543ef7d5523cbc90408548b696053aac031c10 /lib/files
parentcfa036eaa916c1adf38fb161a16c50cd050c0a3b (diff)
downloadnextcloud-server-1901ac8b17c99eef3ccd99edf877fd0a86737d17.tar.gz
nextcloud-server-1901ac8b17c99eef3ccd99edf877fd0a86737d17.zip
drop depricated is_readable and is_writable
Diffstat (limited to 'lib/files')
-rw-r--r--lib/files/filesystem.php14
-rw-r--r--lib/files/view.php14
2 files changed, 0 insertions, 28 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php
index 94e8a562564..0dae774febe 100644
--- a/lib/files/filesystem.php
+++ b/lib/files/filesystem.php
@@ -440,20 +440,6 @@ class Filesystem {
return self::$defaultInstance->readfile($path);
}
- /**
- * @deprecated Replaced by isReadable() as part of CRUDS
- */
- static public function is_readable($path) {
- return self::$defaultInstance->isReadable($path);
- }
-
- /**
- * @deprecated Replaced by isCreatable(), isUpdatable(), isDeletable() as part of CRUDS
- */
- static public function is_writable($path) {
- return self::$defaultInstance->is_writable($path);
- }
-
static public function isCreatable($path) {
return self::$defaultInstance->isCreatable($path);
}
diff --git a/lib/files/view.php b/lib/files/view.php
index 58e3ee6f051..a59ad8105d6 100644
--- a/lib/files/view.php
+++ b/lib/files/view.php
@@ -195,20 +195,6 @@ class View {
return false;
}
- /**
- * @deprecated Replaced by isReadable() as part of CRUDS
- */
- public function is_readable($path) {
- return $this->basicOperation('isReadable', $path);
- }
-
- /**
- * @deprecated Replaced by isCreatable(), isUpdatable(), isDeletable() as part of CRUDS
- */
- public function is_writable($path) {
- return $this->basicOperation('isUpdatable', $path);
- }
-
public function isCreatable($path) {
return $this->basicOperation('isCreatable', $path);
}