diff --git a/RELEASE-NOTES-1.39 b/RELEASE-NOTES-1.39 index c91cc796cb3..654b47e5d43 100644 --- a/RELEASE-NOTES-1.39 +++ b/RELEASE-NOTES-1.39 @@ -264,6 +264,8 @@ because of Phabricator reports. * ChangesListSpecialPage::checkStructuredFilterUiEnabled() and SpecialWatchlist::checkStructuredFilterUiEnabled() now support UserIdentity as the only argument. Passing Config argument was deprecated in 1.34. +* DatabaseUpdater::ifNoActorTable(), deprecated in 1.35, has been removed. Use + ::ifTableNotExists() instead. * … === Deprecations in 1.39 === diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index 14fed255317..e4fa83d37f5 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -1335,14 +1335,6 @@ abstract class DatabaseUpdater { } } - /** - * @deprecated since 1.35, use ifTableNotExists() instead - */ - protected function ifNoActorTable( $func, ...$params ) { - wfDeprecated( __METHOD__, '1.35' ); - return $this->ifTableNotExists( 'actor', $func, ...$params ); - } - /** * Only run a function if a table does not exist *