From aacbb6bea758ceddf9ca3cbe85d8bc1a4ef76547 Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Thu, 10 May 2012 21:01:50 +0400 Subject: [PATCH] Fix typo in comments, rm debugging code Change-Id: I1ae2e59048fbeaf1a1f279dd5bd38bd19b5a8498 --- includes/MimeMagic.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/MimeMagic.php b/includes/MimeMagic.php index b91af6169f..a25eaca9ed 100644 --- a/includes/MimeMagic.php +++ b/includes/MimeMagic.php @@ -123,7 +123,7 @@ END_STRING * Implements functions related to mime types such as detection and mapping to * file extension. * - * Instances of this class are stateles, there only needs to be one global instance + * Instances of this class are stateless, there only needs to be one global instance * of MimeMagic. Please use MimeMagic::singleton() to get that instance. */ class MimeMagic { @@ -215,8 +215,6 @@ class MimeMagic { continue; } - #print "processing MIME line $s
"; - $mime = substr( $s, 0, $i ); $ext = trim( substr($s, $i+1 ) ); -- 2.20.1