FU r98405: ObjectFileCache doesn't need to be abstract

This commit is contained in:
Aaron Schulz 2011-10-06 21:13:38 +00:00
parent c18151c38c
commit 6918f1d62d

View 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;
}