Index: trunk/phase3/includes/cache/ObjectFileCache.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * @file |
6 | 6 | * @ingroup Cache |
7 | 7 | */ |
8 | | -abstract class ObjectFileCache extends FileCacheBase { |
| 8 | +class ObjectFileCache extends FileCacheBase { |
9 | 9 | /** |
10 | 10 | * Construct an ObjectFileCache from a key and a type |
11 | 11 | * @param $key string |
— | — | @@ -16,7 +16,6 @@ |
17 | 17 | |
18 | 18 | $cache->mKey = (string)$key; |
19 | 19 | $cache->mType = (string)$type; |
20 | | - $cache->mExt = 'cache'; |
21 | 20 | |
22 | 21 | return $cache; |
23 | 22 | } |