Removed depencency on wfProfile*
authorTrevor Parscal <tparscal@users.mediawiki.org>
Thu, 9 Sep 2010 19:54:04 +0000 (19:54 +0000)
committerTrevor Parscal <tparscal@users.mediawiki.org>
Thu, 9 Sep 2010 19:54:04 +0000 (19:54 +0000)
includes/JSMin.php

index 9b42ca0..5c8391d 100644 (file)
@@ -60,10 +60,8 @@ class JSMin {
        // -- Public Static Methods --------------------------------------------------
 
        public static function minify( $js ) {
-               wfProfileIn( __METHOD__ );
                $jsmin = new JSMin( $js );
                $ret = $jsmin->min();
-               wfProfileOut( __METHOD__ );
                return $ret;
        }