diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-11 00:40:26 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-11 00:40:26 +0200 |
commit | 48e915c7be87c95a773acc8f1cb34dac6ff632fb (patch) | |
tree | cf12b25dec63719348539db7fb8d4d9c76c97db6 /lib/private/memcache | |
parent | ff24554e76c6ccf7cdb4b5abd82fddaa8d82816c (diff) | |
download | nextcloud-server-48e915c7be87c95a773acc8f1cb34dac6ff632fb.tar.gz nextcloud-server-48e915c7be87c95a773acc8f1cb34dac6ff632fb.zip |
Revert "Null -> NullCache"
This reverts commit ff24554e76c6ccf7cdb4b5abd82fddaa8d82816c.
Diffstat (limited to 'lib/private/memcache')
-rw-r--r-- | lib/private/memcache/null.php (renamed from lib/private/memcache/nullcache.php) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/memcache/nullcache.php b/lib/private/memcache/null.php index 77eadba4eba..982f7edc80f 100644 --- a/lib/private/memcache/nullcache.php +++ b/lib/private/memcache/null.php @@ -22,7 +22,7 @@ namespace OC\Memcache; -class NullCache extends Cache implements \OCP\IMemcache { +class Null extends Cache implements \OCP\IMemcache { public function get($key) { return null; } |