Remove OutputPage::appendSubtitle(); deprecated since 1.19 & unused

* https://github.com/search?q=%40wikimedia+appendSubtitle&type=Code&utf8=%E2%9C%93

Change-Id: Ic09479cf04f00cf1f8764efe747edacd6aa2140d
This commit is contained in:
Ori Livneh 2015-12-14 14:37:13 -08:00
parent 8a88d5d845
commit 827d8dc028

View file

@ -1032,17 +1032,6 @@ class OutputPage extends ContextSource {
$this->addSubtitle( $str );
}
/**
* Add $str to the subtitle
*
* @deprecated since 1.19; use addSubtitle() instead
* @param string|Message $str String or Message to add to the subtitle
*/
public function appendSubtitle( $str ) {
wfDeprecated( __METHOD__, '1.19' );
$this->addSubtitle( $str );
}
/**
* Add $str to the subtitle
*