From 2ae4675c492c3ad67d43381f38240b4c0929a2a2 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 6 Jun 2013 23:28:08 +0200 Subject: [PATCH] update to latest master --- apps/files_external/lib/irods.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/files_external/lib/irods.php b/apps/files_external/lib/irods.php index 6d93002552c..ddce8639ff4 100644 --- a/apps/files_external/lib/irods.php +++ b/apps/files_external/lib/irods.php @@ -86,12 +86,10 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ } public function filetype($path) { - $this->init(); return @filetype($this->constructUrl($path)); } public function mkdir($path) { - $this->init(); return @mkdir($this->constructUrl($path)); } @@ -102,8 +100,6 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ return false; } - $this->init(); - $path = $this->constructUrl($path); // if the file doesn't exist we create it @@ -123,8 +119,6 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ * @return bool */ public function hasUpdated($path,$time) { - $this->init(); - // this it a work around for folder mtimes -> we loop it's content if ( $this->is_dir($path)) { $actualTime=$this->collectionMTime($path); -- 2.39.5