From: Florian Date: Sun, 3 Jan 2016 00:57:59 +0000 (+0100) Subject: Remove not used private member variable mParserWarnings from OutputPage X-Git-Tag: 1.31.0-rc.0~8465^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/%24wgLogo?a=commitdiff_plain;h=01caf147b66d00c861e320ab88c7958f4376db8b;p=lhc%2Fweb%2Fwiklou.git Remove not used private member variable mParserWarnings from OutputPage Change-Id: I2ccc96671a2ae9c10235da19a4341aa6c30f841e --- 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 ); }