Removed depencency on wfProfile*
[lhc/web/wiklou.git] / 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;
        }