Remove ParserOutput::hasCustomDataUpdates()
Deprecated since 1.25, slated for removal in 1.26 but not done. Change-Id: Ia198c3b5a55c794cfdd8a5e93521aff85468ff88
This commit is contained in:
parent
734aa608c7
commit
27769e3fe4
2 changed files with 1 additions and 15 deletions
|
|
@ -284,6 +284,7 @@ changes to languages because of Phabricator reports.
|
||||||
* FileRepo::getRootUrl() was removed (deprecated since 1.20).
|
* FileRepo::getRootUrl() was removed (deprecated since 1.20).
|
||||||
* User::generateToken() was removed (deprecated since 1.20).
|
* User::generateToken() was removed (deprecated since 1.20).
|
||||||
* WikiPage::getRawText() was removed (deprecated since 1.21).
|
* WikiPage::getRawText() was removed (deprecated since 1.21).
|
||||||
|
* ParserOutput::hasCustomDataUpdates() was removed (deprecated since 1.25).
|
||||||
|
|
||||||
== Compatibility ==
|
== Compatibility ==
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -878,21 +878,6 @@ class ParserOutput extends CacheTime {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated since 1.25.
|
|
||||||
*
|
|
||||||
* @note Hard deprecation and removal without long deprecation period, since there are no
|
|
||||||
* known users, but known conceptual issues.
|
|
||||||
*
|
|
||||||
* @todo remove in 1.26
|
|
||||||
*
|
|
||||||
* @return bool false (since 1.25)
|
|
||||||
*/
|
|
||||||
public function hasCustomDataUpdates() {
|
|
||||||
wfDeprecated( __METHOD__, '1.25' );
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated since 1.25. Instead, store any relevant data using setExtensionData,
|
* @deprecated since 1.25. Instead, store any relevant data using setExtensionData,
|
||||||
* and implement Content::getSecondaryDataUpdates() if possible, or use the
|
* and implement Content::getSecondaryDataUpdates() if possible, or use the
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue