diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-09 19:37:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 19:37:34 +0100 |
commit | 61f13583a200ca347b0b18061df32297177c0d33 (patch) | |
tree | cfb3b5b53671795b45941a6033bf039a895250a6 /lib/private | |
parent | 95af966f601832172175ea0ee77c629173b3a730 (diff) | |
parent | 0c5adaddf8136116d560fe1b93838f98877880c7 (diff) | |
download | nextcloud-server-61f13583a200ca347b0b18061df32297177c0d33.tar.gz nextcloud-server-61f13583a200ca347b0b18061df32297177c0d33.zip |
Merge pull request #25677 from nextcloud/drop/cache-factory-create
Drop \OC\Memcache\Factory::create
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Memcache/Factory.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/private/Memcache/Factory.php b/lib/private/Memcache/Factory.php index 6db9b1007ac..17ee2a58e04 100644 --- a/lib/private/Memcache/Factory.php +++ b/lib/private/Memcache/Factory.php @@ -156,16 +156,6 @@ class Factory implements ICacheFactory { } /** - * @see \OC\Memcache\Factory::createDistributed() - * @param string $prefix - * @return ICache - * @deprecated 13.0.0 Use either createLocking, createDistributed or createLocal - */ - public function create(string $prefix = ''): ICache { - return $this->createDistributed($prefix); - } - - /** * check memcache availability * * @return bool |