Remove unused 'pool' param from WANObjectCache::newEmpty()
[lhc/web/wiklou.git] / includes / libs / objectcache / WANObjectCache.php
index 8f2c72a..ac28076 100644 (file)
@@ -225,8 +225,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface {
         */
        public static function newEmpty() {
                return new static( [
-                       'cache'   => new EmptyBagOStuff(),
-                       'pool'    => 'empty'
+                       'cache'   => new EmptyBagOStuff()
                ] );
        }