]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Get rid of stupid debugging code.
authorterry%mozilla.org <>
Tue, 25 May 1999 02:55:43 +0000 (02:55 +0000)
committerterry%mozilla.org <>
Tue, 25 May 1999 02:55:43 +0000 (02:55 +0000)
globals.pl

index be0a888571edb9184e96c8c47e31c10e1db73d11..e1e4067026537d1550fae6071cda12f41f084bfd 100644 (file)
@@ -78,13 +78,8 @@ sub FetchOneColumn {
 
 sub AppendComment {
     my ($bugid,$who,$comment) = (@_);
-    open(DEBUG, ">/tmp/debug");
-    print DEBUG "A $comment";
     $comment =~ s/\r\n/\n/g;     # Get rid of windows-style line endings.
-    print DEBUG "B $comment";
     $comment =~ s/\r/\n/g;       # Get rid of mac-style line endings.
-    print DEBUG "C $comment";
-    close DEBUG;
     if ($comment =~ /^\s*$/) {  # Nothin' but whitespace.
         return;
     }