From f6c9c2e044e1f529568b4885edd6c10418fab94b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 23 Sep 2013 12:14:45 -0700 Subject: [PATCH] Fix missing wfProfileOut call in HtmlFormatter Followup to missing call in Ic276e1604c5718e8568e120ddfb9a8fc13a682fc Change-Id: I69623d565826aacaa884c1c0a3ffec46ca1fb465 --- includes/HtmlFormatter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/HtmlFormatter.php b/includes/HtmlFormatter.php index 99426ecb19..eb3e941a3b 100644 --- a/includes/HtmlFormatter.php +++ b/includes/HtmlFormatter.php @@ -133,6 +133,7 @@ class HtmlFormatter { $removals = $this->parseItemsToRemove(); if ( !$removals ) { + wfProfileOut( __METHOD__ ); return; } -- 2.20.1