aboutsummaryrefslogtreecommitdiffstats
path: root/lib/filechunking.php
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2013-09-17 17:46:33 +0200
committerThomas Tanghus <thomas@tanghus.net>2013-09-17 17:46:33 +0200
commitfe86182dac387817258942a46905f2b801862d4d (patch)
tree80f233a9994a52e350938058b99f46a527f427da /lib/filechunking.php
parent9b420e8660404de27e3af629bfca188ae90cf7bd (diff)
downloadnextcloud-server-fe86182dac387817258942a46905f2b801862d4d.tar.gz
nextcloud-server-fe86182dac387817258942a46905f2b801862d4d.zip
OC_Cache namespace changes and add UserCache to server container.
Refs #4863
Diffstat (limited to 'lib/filechunking.php')
-rw-r--r--lib/filechunking.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filechunking.php b/lib/filechunking.php
index e6d69273a44..313a6ee87d2 100644
--- a/lib/filechunking.php
+++ b/lib/filechunking.php
@@ -29,7 +29,7 @@ class OC_FileChunking {
protected function getCache() {
if (!isset($this->cache)) {
- $this->cache = new OC_Cache_File();
+ $this->cache = new \OC\Cache\File();
}
return $this->cache;
}