Get rid of stupid debugging code.

This commit is contained in:
terry%mozilla.org 1999-05-24 19:55:43 +00:00
Родитель 287e938586
Коммит f3561cf3ee
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

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