diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-11-08 22:26:03 +0100 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-11-08 22:26:03 +0100 |
commit | ca6c500799ec13c433ca74b8caa80875084c4943 (patch) | |
tree | 00fd4252dcad5c47cc4cbd2b27acb0bdeb410915 /lib/filestorage | |
parent | ec015a2e6806be90516e5cba009823050d98bcb0 (diff) | |
download | nextcloud-server-ca6c500799ec13c433ca74b8caa80875084c4943.tar.gz nextcloud-server-ca6c500799ec13c433ca74b8caa80875084c4943.zip |
remove OC_Filesystem::fileatime
Diffstat (limited to 'lib/filestorage')
-rw-r--r-- | lib/filestorage/local.php | 3 |
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); } |