diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-20 23:54:37 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-20 23:58:07 +0200 |
commit | cfa036eaa916c1adf38fb161a16c50cd050c0a3b (patch) | |
tree | 96ed86f65b21a82724e44eee60177e084170673f /lib/files/filesystem.php | |
parent | f7722abcb0a7f6b91e6c767d601193446a41a817 (diff) | |
download | nextcloud-server-cfa036eaa916c1adf38fb161a16c50cd050c0a3b.tar.gz nextcloud-server-cfa036eaa916c1adf38fb161a16c50cd050c0a3b.zip |
drop filectime from the filesystem api's
Diffstat (limited to 'lib/files/filesystem.php')
-rw-r--r-- | lib/files/filesystem.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index e4c269257c2..94e8a562564 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -478,10 +478,6 @@ class Filesystem { return self::$defaultInstance->file_exists($path); } - static public function filectime($path) { - return self::$defaultInstance->filectime($path); - } - static public function filemtime($path) { return self::$defaultInstance->filemtime($path); } |