summaryrefslogtreecommitdiffstats
path: root/lib/private/files/objectstore/abstractobjectstore.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/files/objectstore/abstractobjectstore.php')
-rw-r--r--lib/private/files/objectstore/abstractobjectstore.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/private/files/objectstore/abstractobjectstore.php b/lib/private/files/objectstore/abstractobjectstore.php
index 2ef2f38bf40..3f67ad9a494 100644
--- a/lib/private/files/objectstore/abstractobjectstore.php
+++ b/lib/private/files/objectstore/abstractobjectstore.php
@@ -131,17 +131,6 @@ abstract class AbstractObjectStore extends \OC\Files\Storage\Common {
} else {
$this->user = null;
}
- //initialize cache with root directory in cache
- if ( ! $this->is_dir('/') ) {
- $this->mkdir('/');
- }
-
- if (isset($params['user']) && is_object($params['user'])) {
- //create the files folder in the cache when mounting the objectstore for a user
- if ( ! $this->is_dir('files') ) {
- $this->mkdir('files');
- }
- }
}
public function mkdir($path) {