FU r98405: ObjectFileCache doesn't need to be abstract
authorAaron Schulz <aaron@users.mediawiki.org>
Thu, 6 Oct 2011 21:13:38 +0000 (21:13 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Thu, 6 Oct 2011 21:13:38 +0000 (21:13 +0000)
includes/cache/ObjectFileCache.php

index dc5f9f6..3356f1f 100644 (file)
@@ -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;
        }