Merge "Change loading order of Chinese conversion tables"
[lhc/web/wiklou.git] / includes / parser / ParserOutput.php
index 1a2be5f..83f0f69 100644 (file)
@@ -73,7 +73,6 @@ class ParserOutput extends CacheTime {
        }
 
        public function getText() {
-               wfProfileIn( __METHOD__ );
                $text = $this->mText;
                if ( $this->mEditSectionTokens ) {
                        $text = preg_replace_callback(
@@ -111,7 +110,6 @@ class ParserOutput extends CacheTime {
                                $text
                        );
                }
-               wfProfileOut( __METHOD__ );
                return $text;
        }