Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-11-09 01:26:03 +0400
committerRobin Appelman <icewind1991@gmail.com>2011-11-09 01:26:03 +0400
commitca6c500799ec13c433ca74b8caa80875084c4943 (patch)
tree00fd4252dcad5c47cc4cbd2b27acb0bdeb410915 /lib/filestorage
parentec015a2e6806be90516e5cba009823050d98bcb0 (diff)
remove OC_Filesystem::fileatime
Diffstat (limited to 'lib/filestorage')
-rw-r--r--lib/filestorage/local.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php
index 9e29f85071a..7711116db35 100644
--- a/lib/filestorage/local.php
+++ b/lib/filestorage/local.php
@@ -67,9 +67,6 @@ class OC_Filestorage_Local extends OC_Filestorage{
public function filemtime($path){
return filemtime($this->datadir.$path);
}
- public function fileatime($path){
- return fileatime($this->datadir.$path);
- }
public function file_get_contents($path){
return file_get_contents($this->datadir.$path);
}