diff options
author | Reedy <reedy@wikimedia.org> | 2019-04-14 14:52:41 +0100 |
---|---|---|
committer | Reedy <reedy@wikimedia.org> | 2019-04-14 14:52:41 +0100 |
commit | ae031e237eab8e2023d0fe128f9749a8a43ea439 (patch) | |
tree | a55973fa60f9977ae61f14895b74776e8803e303 | |
parent | dad735ed09bb4cd686c9ef97b6238bae1876c043 (diff) | |
download | mediawikicore-ae031e237eab8e2023d0fe128f9749a8a43ea439.tar.gz mediawikicore-ae031e237eab8e2023d0fe128f9749a8a43ea439.zip |
Remove HWLDFWordAccumulator, deprecated in 1.28
Change-Id: I1eb6ba3c4b8b4cbabf26033a27728e42ebcddb23
-rw-r--r-- | RELEASE-NOTES-1.34 | 1 | ||||
-rw-r--r-- | autoload.php | 1 | ||||
-rw-r--r-- | includes/diff/DairikiDiff.php | 6 |
3 files changed, 1 insertions, 7 deletions
diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index 635152b1675b..576d60e40267 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -87,6 +87,7 @@ because of Phabricator reports. * PreferencesFormLegacy and PreferencesForm classes, deprecated in 1.32, have been removed. * ObjectFactory class, deprecated in 1.31, has been removed. +* HWLDFWordAccumudlator class, deprecated in 1.28, has been removed. === Deprecations in 1.34 === * The MWNamespace class is deprecated. Use MediaWikiServices::getNamespaceInfo. diff --git a/autoload.php b/autoload.php index 9bbb13f37adf..14bdca264a3c 100644 --- a/autoload.php +++ b/autoload.php @@ -622,7 +622,6 @@ $wgAutoloadLocalClasses = [ 'HTMLUserTextField' => __DIR__ . '/includes/htmlform/fields/HTMLUserTextField.php', 'HTMLUsersMultiselectField' => __DIR__ . '/includes/htmlform/fields/HTMLUsersMultiselectField.php', 'HTTPFileStreamer' => __DIR__ . '/includes/libs/filebackend/HTTPFileStreamer.php', - 'HWLDFWordAccumulator' => __DIR__ . '/includes/diff/DairikiDiff.php', 'HashBagOStuff' => __DIR__ . '/includes/libs/objectcache/HashBagOStuff.php', 'HashConfig' => __DIR__ . '/includes/config/HashConfig.php', 'HashRing' => __DIR__ . '/includes/libs/HashRing.php', diff --git a/includes/diff/DairikiDiff.php b/includes/diff/DairikiDiff.php index 063f8265c0f1..4e919bc83c00 100644 --- a/includes/diff/DairikiDiff.php +++ b/includes/diff/DairikiDiff.php @@ -326,9 +326,3 @@ class Diff { return $lines; } } - -/** - * @deprecated Alias for WordAccumulator, to be soon removed - */ -class HWLDFWordAccumulator extends MediaWiki\Diff\WordAccumulator { -} |