diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-07-21 00:06:01 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-07-21 00:20:26 +0200 |
commit | aa118a4c64c5958dcea1cdef299a8b22293ed2db (patch) | |
tree | 9001ab0bcb4f383c740840f521116a6b309c9960 /lib/filesystem.php | |
parent | 0b338a7a413a3975ac1865e56c70b9c5a668a21f (diff) | |
download | nextcloud-server-aa118a4c64c5958dcea1cdef299a8b22293ed2db.tar.gz nextcloud-server-aa118a4c64c5958dcea1cdef299a8b22293ed2db.zip |
remove obsolete oc_filesystem::mountall
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r-- | lib/filesystem.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php index 67dff95a183..7402d2cc25b 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -321,17 +321,6 @@ class OC_Filesystem{ } self::$mounts[$mountpoint]=array('class'=>$class,'arguments'=>$arguments); } - - /** - * create all storage backends mounted in the filesystem - */ - static private function mountAll(){ - foreach(self::$mounts as $mountPoint=>$mount){ - if(!isset(self::$storages[$mountPoint])){ - self::$storages[$mountPoint]=self::createStorage($mount['type'],$mount['arguments']); - } - } - } /** * return the path to a local version of the file |