summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--globals.pl5
1 files changed, 0 insertions, 5 deletions
diff --git a/globals.pl b/globals.pl
index be0a88857..e1e406702 100644
--- a/globals.pl
+++ b/globals.pl
@@ -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;
}