aboutsummaryrefslogtreecommitdiffstats
path: root/includes/diff/TextSlotDiffRenderer.php
diff options
context:
space:
mode:
authorTim Starling <tstarling@wikimedia.org>2023-06-19 14:12:03 +1000
committerTim Starling <tstarling@wikimedia.org>2023-07-03 16:51:22 +1000
commit4d0604d8fa2262f1fd80759aed3e7e3ba4c6fc50 (patch)
tree3d9d7aad8d85cf09befed97171cb0ca5214cc89c /includes/diff/TextSlotDiffRenderer.php
parenta7df9868c19dfbfc1c55567870a15f28d4a11c17 (diff)
downloadmediawikicore-4d0604d8fa2262f1fd80759aed3e7e3ba4c6fc50.tar.gz
mediawikicore-4d0604d8fa2262f1fd80759aed3e7e3ba4c6fc50.zip
Remove hard-deprecated public properties of DifferenceEngine
And remove commented-out code also dating from 1.32 with no near-term prospect of being implemented. Change-Id: I526c558b2efae4b77ae38d0b5bb8127c8b31c280
Diffstat (limited to 'includes/diff/TextSlotDiffRenderer.php')
-rw-r--r--includes/diff/TextSlotDiffRenderer.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/includes/diff/TextSlotDiffRenderer.php b/includes/diff/TextSlotDiffRenderer.php
index deefa5ff997a..a1b73cc66324 100644
--- a/includes/diff/TextSlotDiffRenderer.php
+++ b/includes/diff/TextSlotDiffRenderer.php
@@ -253,15 +253,6 @@ class TextSlotDiffRenderer extends SlotDiffRenderer {
$this->statsdDataFactory->timing( 'diff_time', $time );
}
- // TODO reimplement this using T142313
- /*
- // Log requests slower than 99th percentile
- if ( $time > 100 && $this->mOldPage && $this->mNewPage ) {
- wfDebugLog( 'diff',
- "$time ms diff: {$this->mOldid} -> {$this->mNewid} {$this->mNewPage}" );
- }
- */
-
return $result;
};