From ef2a84e1085c7542704bec51370d860e85c88a17 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Thu, 12 May 2016 16:05:19 -0700 Subject: [PATCH] Remove now-unused LinkCache::$instance Follows-up 449084ec4. Change-Id: Ia43344beba0f1e5f98210d0e4e51e53e138495d1 --- includes/cache/LinkCache.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/includes/cache/LinkCache.php b/includes/cache/LinkCache.php index 1dfefdfdac..2c112474b3 100644 --- a/includes/cache/LinkCache.php +++ b/includes/cache/LinkCache.php @@ -50,11 +50,6 @@ class LinkCache { */ const MAX_SIZE = 10000; - /** - * @var LinkCache - */ - protected static $instance; - public function __construct( TitleFormatter $titleFormatter ) { $this->mGoodLinks = new HashBagOStuff( [ 'maxKeys' => self::MAX_SIZE ] ); $this->mBadLinks = new HashBagOStuff( [ 'maxKeys' => self::MAX_SIZE ] ); -- 2.20.1