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/filesystem.php | |
parent | ec015a2e6806be90516e5cba009823050d98bcb0 (diff) | |
download | nextcloud-server-ca6c500799ec13c433ca74b8caa80875084c4943.tar.gz nextcloud-server-ca6c500799ec13c433ca74b8caa80875084c4943.zip |
remove OC_Filesystem::fileatime
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r-- | lib/filesystem.php | 3 |
1 files changed, 0 insertions, 3 deletions
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')); } |