diff --git a/lib/files.php b/lib/files.php
index 28c8d0b449fc01ba9ea15978f4aaf09c4d9a4fc2..ba111bee967488d4e78bdac0a898d2eefb35f4af 100644
--- a/lib/files.php
+++ b/lib/files.php
@@ -178,7 +178,7 @@ class OC_Files {
 			$filename=$dir.'/'.$files;
 		}
 		@ob_end_clean();
-		if($zip or \OC\Files\Filesystem::is_readable($filename)) {
+		if($zip or \OC\Files\Filesystem::isReadable($filename)) {
 			header('Content-Disposition: attachment; filename="'.basename($filename).'"');
 			header('Content-Transfer-Encoding: binary');
 			OC_Response::disableCaching();
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php
index 94e8a562564e7b4274a7d342f46979b25f81a578..0dae774febe4c5a2ddd237f392bb6d5a371566b9 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 58e3ee6f0516ca7374e8ef1d9f8fae723530ec08..a59ad8105d6a4205f9e90613a28ca81afc37ca2c 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);
 	}
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 9ce75aaf8cef86e4b501692126c6f993e33c92f3..ea0a289c8d2bd06fadb95c628798d22662691cb6 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -257,13 +257,6 @@ class OC_Filesystem {
 		return \OC\Files\Filesystem::isReadable($path);
 	}
 
-	/**
-	 * @deprecated Replaced by isCreatable(), isUpdatable(), isDeletable() as part of CRUDS
-	 */
-	static public function is_writable($path) {
-		return \OC\Files\Filesystem::is_writable($path);
-	}
-
 	/**
 	 * @deprecated OC_Filesystem is replaced by \OC\Files\Filesystem
 	 */