summaryrefslogtreecommitdiffstats
path: root/lib/files/storage
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-11-23 16:23:52 +0100
committerRobin Appelman <icewind@owncloud.com>2012-11-24 22:55:26 +0100
commitd3e37fa157faa59598e92a9aa02c6bbf818b60e0 (patch)
tree76093c80ed8521a259144cba73b07d29d37485f3 /lib/files/storage
parentc47bf9bbcefb0640c24ab0aa6ee79f4c52222b45 (diff)
downloadnextcloud-server-d3e37fa157faa59598e92a9aa02c6bbf818b60e0.tar.gz
nextcloud-server-d3e37fa157faa59598e92a9aa02c6bbf818b60e0.zip
remove fileatime from common storage backend
Diffstat (limited to 'lib/files/storage')
-rw-r--r--lib/files/storage/common.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/files/storage/common.php b/lib/files/storage/common.php
index 9978cea5712..c891d0c3ad0 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) {