summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-05-25 04:55:43 +0200
committerterry%mozilla.org <>1999-05-25 04:55:43 +0200
commit2dc596b761b1c848e837026be9a73c6b8f9aa3ad (patch)
tree39845342bafc70ebab406abab626b396fc7d33b2 /globals.pl
parentfb194def24fb9d971a7ab28876090ec012dded88 (diff)
downloadbugzilla-2dc596b761b1c848e837026be9a73c6b8f9aa3ad.tar.gz
bugzilla-2dc596b761b1c848e837026be9a73c6b8f9aa3ad.tar.xz
Get rid of stupid debugging code.
Diffstat (limited to 'globals.pl')
-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;
}