Remove noisy profiling
authorAaron Schulz <aaron@users.mediawiki.org>
Wed, 10 Dec 2008 04:40:18 +0000 (04:40 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Wed, 10 Dec 2008 04:40:18 +0000 (04:40 +0000)
includes/Wiki.php

index 343e829..3b8c641 100644 (file)
@@ -50,7 +50,6 @@ class MediaWiki {
         * @param $request WebRequest
         */
        function initialize( &$title, &$article, &$output, &$user, $request ) {
-               wfProfileIn( __METHOD__ );
                $this->preliminaryChecks( $title, $output, $request ) ;
                if( !$this->initializeSpecialCases( $title, $output, $request ) ) {
                        $new_article = $this->initializeArticle( $title, $request );
@@ -60,11 +59,9 @@ class MediaWiki {
                        } elseif( is_string( $new_article ) ) {
                                $output->redirect( $new_article );
                        } else {
-                               wfProfileOut( __METHOD__ );
                                throw new MWException( "Shouldn't happen: MediaWiki::initializeArticle() returned neither an object nor a URL" );
                        }
                }
-               wfProfileOut( __METHOD__ );
        }
 
        /**
@@ -132,7 +129,6 @@ class MediaWiki {
         * @param $request WebRequest
         */
        function preliminaryChecks( &$title, &$output, $request ) {
-
                if( $request->getCheck( 'search' ) ) {
                        // Compatibility with old search URLs which didn't use Special:Search
                        // Just check for presence here, so blank requests still
@@ -141,7 +137,6 @@ class MediaWiki {
                        // Do this above the read whitelist check for security...
                        $title = SpecialPage::getTitleFor( 'Search' );
                }
-
                # If the user is not logged in, the Namespace:title of the article must be in
                # the Read array in order for the user to see it. (We have to check here to
                # catch special pages etc. We check again in Article::view())
@@ -150,7 +145,6 @@ class MediaWiki {
                        $output->output();
                        exit;
                }
-
        }
 
        /**
@@ -418,10 +412,7 @@ class MediaWiki {
         * @param $request WebRequest
         */
        function performAction( &$output, &$article, &$title, &$user, &$request ) {
-               wfProfileIn( __METHOD__ );
-
                if( !wfRunHooks( 'MediaWikiPerformAction', array( $output, $article, $title, $user, $request, $this ) ) ) {
-                       wfProfileOut( __METHOD__ );
                        return;
                }
 
@@ -512,7 +503,6 @@ class MediaWiki {
                                        $output->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
                                }
                }
-               wfProfileOut( __METHOD__ );
 
        }