Merge "objectcache: Use faster getArrayCopy() in WAN cache methods"
[lhc/web/wiklou.git] / includes / libs / objectcache / WANObjectCache.php
index 58e4e09..0842e04 100644 (file)
@@ -202,8 +202,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface {
        public static function newEmpty() {
                return new self( [
                        'cache'   => new EmptyBagOStuff(),
-                       'pool'    => 'empty',
-                       'relayer' => new EventRelayerNull( [] )
+                       'pool'    => 'empty'
                ] );
        }