diff --git a/lib/fileproxy.php b/lib/fileproxy.php
index 2f81bde64a18e61dc8912f929643d5bd0b7adcd0..52ec79b4bdb6f153d92aae9605b336be2e514220 100644
--- a/lib/fileproxy.php
+++ b/lib/fileproxy.php
@@ -36,7 +36,7 @@
  * The return value of the post-proxy will be used as the new result of the operation
  * The operations that have a post-proxy are:
  * file_get_contents, is_file, is_dir, file_exists, stat, is_readable,
- * is_writable, fileatime, filemtime, filectime, file_get_contents,
+ * is_writable, filemtime, filectime, file_get_contents,
  * getMimeType, hash, fopen, free_space and search
  */
 
diff --git a/lib/files/storage/common.php b/lib/files/storage/common.php
index 9978cea57122c3a50678ab238bdb906534eb85d5..c891d0c3ad0c6c6c6447a4138bf0b38d4393634b 100644
--- a/lib/files/storage/common.php
+++ b/lib/files/storage/common.php
@@ -69,10 +69,6 @@ abstract class Common implements \OC\Files\Storage\Storage {
 		$stat = $this->stat($path);
 		return $stat['mtime'];
 	}
-	public function fileatime($path) {
-		$stat = $this->stat($path);
-		return $stat['atime'];
-	}
 	public function file_get_contents($path) {
 		$handle = $this->fopen($path, "r");
 		if(!$handle) {