Turn ParserOptions::setSkin() into a no-op since mSkin is no more used

This commit is contained in:
Alexandre Emsenhuber 2011-09-12 16:29:21 +00:00
parent 018def1ecc
commit 077d6e218f

View file

@ -137,7 +137,7 @@ class ParserOptions {
function setNumberHeadings( $x ) { return wfSetVar( $this->mNumberHeadings, $x ); }
function setAllowSpecialInclusion( $x ) { return wfSetVar( $this->mAllowSpecialInclusion, $x ); }
function setTidy( $x ) { return wfSetVar( $this->mTidy, $x ); }
function setSkin( $x ) { $this->mSkin = $x; }
function setSkin( $x ) {}
function setInterfaceMessage( $x ) { return wfSetVar( $this->mInterfaceMessage, $x ); }
function setTargetLanguage( $x ) { return wfSetVar( $this->mTargetLanguage, $x, true ); }
function setMaxIncludeSize( $x ) { return wfSetVar( $this->mMaxIncludeSize, $x ); }