summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-11-08 22:26:03 +0100
committerRobin Appelman <icewind1991@gmail.com>2011-11-08 22:26:03 +0100
commitca6c500799ec13c433ca74b8caa80875084c4943 (patch)
tree00fd4252dcad5c47cc4cbd2b27acb0bdeb410915 /lib
parentec015a2e6806be90516e5cba009823050d98bcb0 (diff)
downloadnextcloud-server-ca6c500799ec13c433ca74b8caa80875084c4943.tar.gz
nextcloud-server-ca6c500799ec13c433ca74b8caa80875084c4943.zip
remove OC_Filesystem::fileatime
Diffstat (limited to 'lib')
-rw-r--r--lib/fileproxy.php2
-rw-r--r--lib/filestorage.php1
-rw-r--r--lib/filestorage/local.php3
-rw-r--r--lib/filesystem.php3
4 files changed, 1 insertions, 8 deletions
diff --git a/lib/fileproxy.php b/lib/fileproxy.php
index 549b7015a6a..235fc8bf284 100644
--- a/lib/fileproxy.php
+++ b/lib/fileproxy.php
@@ -34,7 +34,7 @@
* A post-proxy recieves 2 arguments, the filepath and the result of the operation.
* The return calue 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, getMimeType, hash, free_space and search
+ * file_get_contents, is_file, is_dir, file_exists, stat, is_readable, is_writable, filemtime, filectime, file_get_contents, getMimeType, hash, free_space and search
*/
class OC_FileProxy{
diff --git a/lib/filestorage.php b/lib/filestorage.php
index 34fa6457fd2..90071a86dbe 100644
--- a/lib/filestorage.php
+++ b/lib/filestorage.php
@@ -39,7 +39,6 @@ class OC_Filestorage{
public function readfile($path){}
public function filectime($path){}
public function filemtime($path){}
- public function fileatime($path){}
public function file_get_contents($path){}
public function file_put_contents($path,$data){}
public function unlink($path){}
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);
}
diff --git a/lib/filesystem.php b/lib/filesystem.php
index e28a3c5667e..a25e8697985 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -251,9 +251,6 @@ class OC_Filesystem{
static public function filemtime($path){
return self::basicOperation('filemtime',$path);
}
- static public function fileatime($path){
- return self::basicOperation('filemtime',$path);
- }
static public function file_get_contents($path){
return self::basicOperation('file_get_contents',$path,array('read'));
}