From: Aaron Schulz Date: Thu, 6 Oct 2011 21:13:38 +0000 (+0000) Subject: FU r98405: ObjectFileCache doesn't need to be abstract X-Git-Tag: 1.31.0-rc.0~27219 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=6918f1d62d64cf3e3aef836385a80e1089959ea1;p=lhc%2Fweb%2Fwiklou.git FU r98405: ObjectFileCache doesn't need to be abstract --- diff --git a/includes/cache/ObjectFileCache.php b/includes/cache/ObjectFileCache.php index dc5f9f612b..3356f1fc20 100644 --- a/includes/cache/ObjectFileCache.php +++ b/includes/cache/ObjectFileCache.php @@ -4,7 +4,7 @@ * @file * @ingroup Cache */ -abstract class ObjectFileCache extends FileCacheBase { +class ObjectFileCache extends FileCacheBase { /** * Construct an ObjectFileCache from a key and a type * @param $key string @@ -16,7 +16,6 @@ abstract class ObjectFileCache extends FileCacheBase { $cache->mKey = (string)$key; $cache->mType = (string)$type; - $cache->mExt = 'cache'; return $cache; }