From f3561cf3ee6fa54322e56bc5f6a2f6265c88e08e Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Mon, 24 May 1999 19:55:43 +0000 Subject: [PATCH] Get rid of stupid debugging code. --- webtools/bugzilla/globals.pl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/webtools/bugzilla/globals.pl b/webtools/bugzilla/globals.pl index be0a888571ed..e1e406702653 100644 --- a/webtools/bugzilla/globals.pl +++ b/webtools/bugzilla/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; }