Deprecate WikiRevision::$importer
This was introduced in 9b3128eb2b
but was not used there.
It also currently looks unused, even when grepping for possible
magic usages of 'importer' and "importer".
We could go ahead and just remove this now, as anything that wants
to set the $importer when the property is removed would still succeed.
But lets adhere to the deprecation policy here.
Change-Id: I5ac16dd87a95be6a3cdd4b16988d37d1d6104749
This commit is contained in:
parent
fd30abb59a
commit
213acd8202
2 changed files with 7 additions and 1 deletions
|
|
@ -265,6 +265,7 @@ changes to languages because of Phabricator reports.
|
|||
* Removed 'jquery.arrowSteps' module. (deprecated since 1.28)
|
||||
* The 'jquery.autoEllipsis' ResourceLoader module is now deprecated.
|
||||
* WikiRevision::$fileIsTemp was deprecated.
|
||||
* WikiRevision::$importer was deprecated.
|
||||
|
||||
== Compatibility ==
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,12 @@
|
|||
* @ingroup SpecialPage
|
||||
*/
|
||||
class WikiRevision {
|
||||
/** @todo Unused? */
|
||||
|
||||
/**
|
||||
* @since 1.17
|
||||
* @deprecated in 1.29. Unused.
|
||||
* @note Introduced in 9b3128eb2b654761f21fd4ca1d5a1a4b796dc912, unused there, unused now.
|
||||
*/
|
||||
public $importer = null;
|
||||
|
||||
/** @var Title */
|
||||
|
|
|
|||
Loading…
Reference in a new issue