diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-06-16 18:59:44 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-06-18 12:53:20 +0200 |
commit | 9335a5f07f667ae5c917cc1ee065bceecdb65795 (patch) | |
tree | f26188e6e7448ae95601b5e3c12a7df280d3c16c /lib | |
parent | 5722e31d1a277199e9b8ae85a21685abf3436418 (diff) | |
download | nextcloud-server-9335a5f07f667ae5c917cc1ee065bceecdb65795.tar.gz nextcloud-server-9335a5f07f667ae5c917cc1ee065bceecdb65795.zip |
remove duplicate method
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/objectstore/abstractobjectstore.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/private/files/objectstore/abstractobjectstore.php b/lib/private/files/objectstore/abstractobjectstore.php index db4c398018e..de82003f0e8 100644 --- a/lib/private/files/objectstore/abstractobjectstore.php +++ b/lib/private/files/objectstore/abstractobjectstore.php @@ -70,17 +70,6 @@ abstract class AbstractObjectStore extends \OC\Files\Storage\Common { } /** - * @param string $path - * @return \OC\Files\Cache\Cache - */ - public function getCache($path = '') { - if (!isset($this->cache)) { - $this->cache = new \OC\Files\Cache\Cache($this); - } - return $this->cache; - } - - /** * Object Stores use a NoopScanner because metadata is directly stored in * the file cache and cannot really scan the filesystem * @param string $path |