From 75a8813c863f5a1b7688448708ae2c91b798e603 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Tue, 20 Sep 2016 15:26:48 -0400 Subject: [PATCH] Remove pre-1.25 API compatibility code Since this extension uses extension.json, it already requires 1.25+ so no need to keep the old code around. Change-Id: I4acbeec983367f0bd3e7b1996d377bb6e5835d63 --- api/ApiQueryTitleBlacklist.php | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/api/ApiQueryTitleBlacklist.php b/api/ApiQueryTitleBlacklist.php index 6fa9db59..ec23d6a5 100644 --- a/api/ApiQueryTitleBlacklist.php +++ b/api/ApiQueryTitleBlacklist.php @@ -90,34 +90,6 @@ class ApiQueryTitleBlacklist extends ApiBase { ); } - /** - * @deprecated since MediaWiki core 1.25 - */ - public function getParamDescription() { - return array( - 'title' => 'The string to validate against the blacklist', - 'nooverride' => 'Don\'t try to override the titleblacklist', - 'action' => 'The thing you\'re trying to do', - ); - } - - /** - * @deprecated since MediaWiki core 1.25 - */ - public function getDescription() { - return 'Validate an article title, filename, or username against the TitleBlacklist.'; - } - - /** - * @deprecated since MediaWiki core 1.25 - */ - public function getExamples() { - return array( - 'api.php?action=titleblacklist&tbtitle=Foo', - 'api.php?action=titleblacklist&tbtitle=Bar&tbaction=edit', - ); - } - /** * @see ApiBase::getExamplesMessages() */