X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/19e297c21b10b1b8a3acad5e73fc71dcb35db44a..6932310fd58ebef145fa01eb76edf7150284d8ea:/includes/ProfilerSimpleText.php diff --git a/includes/ProfilerSimpleText.php b/includes/ProfilerSimpleText.php deleted file mode 100644 index db4b6053..00000000 --- a/includes/ProfilerSimpleText.php +++ /dev/null @@ -1,39 +0,0 @@ -visible=true; - * - * @ingroup Profiler - */ -class ProfilerSimpleText extends ProfilerSimple { - public $visible=false; /* Show as
 or \n";
-			}
-		}
-	}
-
-	/* dense is good */
-	static function sort($a,$b) { return $a['real']<$b['real']; /* sort descending by time elapsed */ }
-	static function format($item,$key) { self::$out .= sprintf("%3.6f %6d - %s\n",$item['real'],$item['count'], $key); }
-}