From: Jayprakash12345 <0freerunning@gmail.com> Date: Fri, 9 Mar 2018 20:35:57 +0000 (+0000) Subject: Remove deprecated function ApiBase::getModuleProfileName X-Git-Tag: 1.31.0-rc.0~166 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=80f787fba3e8dcbf959f37f925a6f6a89979a5c0 Remove deprecated function ApiBase::getModuleProfileName Bug: T189330 Change-Id: Ifa30d115b97e8109d11cb932a924d63afc6f81d9 --- diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index 24e9c21b07..18114f2559 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -121,6 +121,7 @@ production. === Action API internal changes in 1.31 === * ApiBase::getProfileDBTime was removed (deprecated since 1.25) +* ApiBase::getModuleProfileName was removed (deprecated since 1.25) === Languages updated in 1.31 === MediaWiki supports over 350 languages. Many localisations are updated diff --git a/includes/api/ApiBase.php b/includes/api/ApiBase.php index c2a3fec52b..6bfdbacff9 100644 --- a/includes/api/ApiBase.php +++ b/includes/api/ApiBase.php @@ -2589,16 +2589,6 @@ abstract class ApiBase extends ContextSource { return false; } - /** - * @deprecated since 1.25, always returns empty string - * @param IDatabase|bool $db - * @return string - */ - public function getModuleProfileName( $db = false ) { - wfDeprecated( __METHOD__, '1.25' ); - return ''; - } - /** * @deprecated since 1.25 */