Get rid of stupid debugging code.

git-svn-id: svn://10.0.0.236/trunk@32526 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%mozilla.org
1999-05-24 19:55:43 +00:00
parent c38f34b326
commit 7ced32b722

View 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;
}