From 01caf147b66d00c861e320ab88c7958f4376db8b Mon Sep 17 00:00:00 2001 From: Florian Date: Sun, 3 Jan 2016 01:57:59 +0100 Subject: [PATCH] Remove not used private member variable mParserWarnings from OutputPage Change-Id: I2ccc96671a2ae9c10235da19a4341aa6c30f841e --- includes/OutputPage.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 6a568480b5..97165b4613 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -229,9 +229,6 @@ class OutputPage extends ContextSource { /** @var string */ private $mPageTitleActionText = ''; - /** @var array */ - private $mParseWarnings = array(); - /** @var int Cache stuff. Looks like mEnableClientCache */ protected $mCdnMaxage = 0; /** @var int Upper limit on mCdnMaxage */ @@ -1773,7 +1770,6 @@ class OutputPage extends ContextSource { $this->mNewSectionLink = $parserOutput->getNewSection(); $this->mHideNewSectionLink = $parserOutput->getHideNewSection(); - $this->mParseWarnings = $parserOutput->getWarnings(); if ( !$parserOutput->isCacheable() ) { $this->enableClientCache( false ); } -- 2.20.1